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)
11 rows where transcript_id = 27539166
This data as json, CSV (advanced)
Suggested facets: is_minor, score, phase
id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
153300826 | GT-AG | 0 | 0.0163945735295236 | 168 | TCONS_00000070.p1 27539166 | 1 | 72525 | 72692 | Physarum polycephalum 5791 | GAG|GTATAAATTA...TTTTTTTTGAAC...TTTAG|GAT | 1 | 1 | 4.933 |
153300827 | GT-AG | 1 | 99.99988752588897 | 411 | TCONS_00000070.p1 27539166 | 2 | 72051 | 72461 | Physarum polycephalum 5791 | TTT|GTATCCTGCA...TACTTTTTGATA...TTAAG|ATA | 1 | 1 | 9.373 |
153300828 | GT-AG | 0 | 1.000000099473604e-05 | 470 | TCONS_00000070.p1 27539166 | 3 | 71386 | 71855 | Physarum polycephalum 5791 | AAG|GTACGAGGAA...TTATCTTTCAAA...TCTAG|GAA | 1 | 1 | 23.115 |
153300829 | GT-AG | 0 | 1.000000099473604e-05 | 277 | TCONS_00000070.p1 27539166 | 4 | 71006 | 71282 | Physarum polycephalum 5791 | CAA|GTAAGATTTT...ATTATTTTGTCA...TGAAG|TCG | 2 | 1 | 30.374 |
153300830 | GT-AG | 0 | 1.000000099473604e-05 | 309 | TCONS_00000070.p1 27539166 | 5 | 70602 | 70910 | Physarum polycephalum 5791 | TCA|GTAAGTTCAT...TACATATTAATT...TTTAG|CCC | 1 | 1 | 37.068 |
153300831 | GT-AG | 1 | 97.8597236635914 | 233 | TCONS_00000070.p1 27539166 | 6 | 70109 | 70341 | Physarum polycephalum 5791 | ATG|GTATCCTAGA...TTTTATTTGATT...TATAG|GTT | 0 | 1 | 55.391 |
153300832 | GT-AG | 0 | 1.000000099473604e-05 | 69 | TCONS_00000070.p1 27539166 | 7 | 69855 | 69923 | Physarum polycephalum 5791 | TAG|GTTTGTGATG...TATAAAGTAAAA...TTTAG|TTG | 2 | 1 | 68.428 |
153300833 | GT-AG | 1 | 97.12026045259678 | 865 | TCONS_00000070.p1 27539166 | 8 | 68921 | 69785 | Physarum polycephalum 5791 | GTT|GTATCCTCTC...TATTTTTTTATA...CCCAG|ATA | 2 | 1 | 73.291 |
153300834 | GT-AG | 0 | 0.0003522581586223 | 263 | TCONS_00000070.p1 27539166 | 9 | 68542 | 68804 | Physarum polycephalum 5791 | CTG|GTATGACAAA...AATTAATTCATT...ATCAG|ATA | 1 | 1 | 81.466 |
153300835 | GT-AG | 0 | 0.0782121819289651 | 67 | TCONS_00000070.p1 27539166 | 10 | 68422 | 68488 | Physarum polycephalum 5791 | GGG|GTATGTTTTT...TTCATTTTGATA...TTTAG|GAA | 0 | 1 | 85.201 |
153300836 | GT-AG | 0 | 3.602252507085757 | 265 | TCONS_00000070.p1 27539166 | 11 | 68056 | 68320 | Physarum polycephalum 5791 | AAG|GTATTTTTTA...TTTTCCTTAGCT...TAAAG|ATT | 2 | 1 | 92.319 |
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]);