home / WtMTA

introns

Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)

id
INTEGER (primary key), globally unique identifier for each intron
dinucleotide_pair
TEXT, terminal dinucleotide sequences of the intron
is_minor
INTEGER, indicates if the intron is a minor intron (1) or not (0)
score
REAL, score representing the probability (0-100%) of the intron being minor
length
INTEGER, length of the intron in base pairs
transcript_id
INTEGER (foreign key referencing transcripts(id)), parent transcript
ordinal_index
INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
start
INTEGER, start position of the intron in the genome
end
INTEGER, end position of the intron in the genome
taxonomy_id
INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
scored_motifs
TEXT, motifs scored for the intron
phase
INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
in_cds
INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
relative_position
REAL, relative position of the intron within the transcript (as a percentage of coding length)

12 rows where transcript_id = 30628702

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
171035833 GT-AG 0 1.000000099473604e-05 85377 rna-XM_020511398.1 30628702 2 268472 353848 Rhincodon typus 259920 CAG|GTAATAATTT...CCTGTTTTAAAA/TAAAGATTAATT...CCTAG|GAG 0 1 9.736
171035834 GT-AG 0 1.000000099473604e-05 2390 rna-XM_020511398.1 30628702 3 265950 268339 Rhincodon typus 259920 AAG|GTGAGGGTGC...AGGCCTTTATTG/TATTGCCTCATT...TGCAG|GTA 0 1 16.572
171035835 GT-AG 0 1.000000099473604e-05 3142 rna-XM_020511398.1 30628702 4 262599 265740 Rhincodon typus 259920 AAA|GTAAGATTAT...TGTGTTTTGTTT/TTTTGTTTTACT...TACAG|GCT 2 1 27.395
171035836 GT-AG 0 0.0023124608249948 6209 rna-XM_020511398.1 30628702 5 256197 262405 Rhincodon typus 259920 CAT|GTATGTCTCC...TCTATTGTATTT/TTCTATTGTATT...TGCAG|TTG 0 1 37.39
171035837 GT-AG 0 1.000000099473604e-05 1845 rna-XM_020511398.1 30628702 6 254176 256020 Rhincodon typus 259920 TAA|GTAAGTAATA...AAATTCATAAAC/TCAAAATTCATA...TCTAG|TTC 2 1 46.504
171035838 GT-AG 0 1.000000099473604e-05 2110 rna-XM_020511398.1 30628702 7 251988 254097 Rhincodon typus 259920 CTG|GTGAGACAAA...TTCTTGTTAATA/TTCTTGTTAATA...CCAAG|GAT 2 1 50.544
171035839 GT-AG 0 1.000000099473604e-05 3049 rna-XM_020511398.1 30628702 8 248743 251791 Rhincodon typus 259920 CAG|GTGGGAATAC...AGGCTTTTCATT/AGGCTTTTCATT...TGTAG|TAC 0 1 60.694
171035840 GC-AG 0 1.000000099473604e-05 1504 rna-XM_020511398.1 30628702 9 247116 248619 Rhincodon typus 259920 AAG|GCAAGAGAAA...CTTTCTTTAGCT/TCTGTGCTCATT...TTTAG|GTG 0 1 67.064
171035841 GT-AG 0 7.853216557035249e-05 9965 rna-XM_020511398.1 30628702 10 236954 246918 Rhincodon typus 259920 CAG|GTAATCACCA...ATGTTCTTGATA/TCTGTCCTGACC...CCTAG|GGA 2 1 77.266
171035842 GT-AG 0 8.839912996665443e-05 2123 rna-XM_020511398.1 30628702 11 234709 236831 Rhincodon typus 259920 GAG|GTATGTCCAG...AATTTCTTGGCA/AATTAGATCAAT...TACAG|GAG 1 1 83.584
171035843 GT-AG 0 0.0001943842837973 1581 rna-XM_020511398.1 30628702 12 232991 234571 Rhincodon typus 259920 CAG|GTAAGCTGCC...AAAATCTTAATT/CTTAATTTGATC...CACAG|ATC 0 1 90.678
171035861 GT-AG 0 1.000000099473604e-05 208 rna-XM_020511398.1 30628702 1 354022 354229 Rhincodon typus 259920 TAG|GTAAGAGTGA...CATGCATTACTG/ATGAAGTTTATG...TTTAG|ATT   0 1.036

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "introns" (
"id" INTEGER,
  "dinucleotide_pair" TEXT,
  "is_minor" INTEGER,
  "score" REAL,
  "length" INTEGER,
  "transcript_id" INTEGER,
  "ordinal_index" INTEGER,
  "start" INTEGER,
  "end" INTEGER,
  "taxonomy_id" INTEGER,
  "scored_motifs" TEXT,
  "phase" INTEGER,
  "in_cds" INTEGER,
  "relative_position" REAL
  ,PRIMARY KEY ([id]),
   FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
   FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
    ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
    ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
    ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
    ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
    ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
    ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
    ON [introns] ([in_cds]);
Powered by Datasette · Queries took 24.788ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)