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)
10 rows where transcript_id = 26741189
This data as json, CSV (advanced)
Suggested facets: score, length, phase
id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
148388700 | GT-AG | 0 | 1.000000099473604e-05 | 772 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 1 | 117589 | 118360 | Pelomyxa schiedti 1580589 | CAG|GTCGGAATTA...ATTTCCTTTTTT/CCGCTTCTCAAT...CACAG|GAA | 0 | 1 | 27.451 |
148388701 | GT-AG | 0 | 1.806892286984166e-05 | 44 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 2 | 117452 | 117495 | Pelomyxa schiedti 1580589 | AAT|GTTGATTCAC...TGTTCCTTCTTA/TTCCTTCTTACG...CTCAG|AAA | 0 | 1 | 33.529 |
148388702 | GT-AG | 0 | 0.0066877517698239 | 41 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 3 | 117267 | 117307 | Pelomyxa schiedti 1580589 | ACC|GTACTCTACA...AACTTCTAAAGC/ATGAGATTCAAC...TATAG|GAG | 0 | 1 | 42.941 |
148388703 | GT-AG | 0 | 0.0013723682491237 | 48 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 4 | 117078 | 117125 | Pelomyxa schiedti 1580589 | TAT|GTGTGCTGTT...CATCAGTTAACC/CATCAGTTAACC...TTAAG|ATT | 0 | 1 | 52.157 |
148388704 | GT-AG | 0 | 1.000000099473604e-05 | 40 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 5 | 116923 | 116962 | Pelomyxa schiedti 1580589 | GAG|GTGAGGGTAC...AATGCATTGACA/AATGCATTGACA...TGTAG|TTT | 1 | 1 | 59.673 |
148388705 | GT-AG | 0 | 0.0130015229820449 | 42 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 6 | 116755 | 116796 | Pelomyxa schiedti 1580589 | ACA|GTATTGACTG...TTGTCTTTATCA/TCATTTCTAACC...AATAG|TTC | 1 | 1 | 67.908 |
148388706 | GT-AG | 0 | 1.000000099473604e-05 | 39 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 7 | 116681 | 116719 | Pelomyxa schiedti 1580589 | AAG|GTTTGACCTA...ATTGTTTTAGAA/TAGAATCTAATT...GATAG|CTC | 0 | 1 | 70.196 |
148388707 | GT-AG | 0 | 1.000000099473604e-05 | 38 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 8 | 116516 | 116553 | Pelomyxa schiedti 1580589 | CAG|GTTGTTAACT...ATATACTTACCA/CATATACTTACC...TTTAG|GAA | 1 | 1 | 78.497 |
148388708 | GT-AG | 0 | 0.0177067726801075 | 42 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 9 | 116356 | 116397 | Pelomyxa schiedti 1580589 | AAC|GTAGCACTTT...TTTCTATTAATT/TTTCTATTAATT...AGAAG|ACT | 2 | 1 | 86.209 |
148388709 | GT-AG | 0 | 0.0063545618365432 | 47 | rna-gnl|WGS:JAHLWZ|Pelo_61_1 26741189 | 10 | 116209 | 116255 | Pelomyxa schiedti 1580589 | ATG|GTTTTCCCTG...CTCCTCTTAACA/ATGGTTTTAAAC...GCAAG|GAA | 0 | 1 | 92.745 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);