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 = 27539149
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
153300642 | GT-AG | 0 | 3.11279347159291e-05 | 161 | TCONS_00000069.p1 27539149 | 1 | 53892 | 54052 | Physarum polycephalum 5791 | CGA|GTACGTTAAT...AATATTATGACA...TGTAG|ATA | 2 | 1 | 17.484 |
153300643 | GT-AG | 0 | 1.000000099473604e-05 | 562 | TCONS_00000069.p1 27539149 | 3 | 52237 | 52798 | Physarum polycephalum 5791 | GAG|GTTCTCCCAC...TCTTTTTTTATA...TCTAG|GAC | 0 | 1 | 27.34 |
153300644 | GT-AG | 0 | 19.537549099925855 | 1275 | TCONS_00000069.p1 27539149 | 4 | 50869 | 52143 | Physarum polycephalum 5791 | CAA|GTATCTCTTT...AAGTAATTAATA...TACAG|AAA | 0 | 1 | 31.947 |
153300645 | GT-AG | 0 | 0.0135938401308805 | 505 | TCONS_00000069.p1 27539149 | 5 | 50241 | 50745 | Physarum polycephalum 5791 | CAG|GTATACCACT...CAAATTTTGACG...AATAG|GGT | 0 | 1 | 38.039 |
153300646 | GT-AG | 0 | 1.000000099473604e-05 | 106 | TCONS_00000069.p1 27539149 | 6 | 49988 | 50093 | Physarum polycephalum 5791 | CAG|GTAGGACCCC...ATTTATTTGGCT...AAAAG|AAC | 0 | 1 | 45.319 |
153300647 | GT-AG | 0 | 0.0057290012998975 | 355 | TCONS_00000069.p1 27539149 | 7 | 49504 | 49858 | Physarum polycephalum 5791 | CTG|GTATACTTTT...TAAAAATTAATT...GATAG|GAT | 0 | 1 | 51.709 |
153300648 | GT-AG | 0 | 0.1913552780856076 | 228 | TCONS_00000069.p1 27539149 | 8 | 49158 | 49385 | Physarum polycephalum 5791 | CTG|GTATTTTACT...AAACCTTTAACA...TGTAG|GCC | 1 | 1 | 57.553 |
153300649 | GT-AG | 0 | 0.0003675716013071 | 655 | TCONS_00000069.p1 27539149 | 9 | 48391 | 49045 | Physarum polycephalum 5791 | CAG|GTATTGTTTA...CCCCCCTTTTTT...CACAG|CAA | 2 | 1 | 63.101 |
153300650 | GT-AG | 0 | 0.0411721820156478 | 851 | TCONS_00000069.p1 27539149 | 10 | 47423 | 48273 | Physarum polycephalum 5791 | GCG|GTACCTTTTC...TTTTCTCTAATC...TCTAG|AGG | 2 | 1 | 68.895 |
153300651 | GT-AG | 0 | 1.000000099473604e-05 | 241 | TCONS_00000069.p1 27539149 | 11 | 47036 | 47276 | Physarum polycephalum 5791 | CGA|GTGCTGGAGG...ACCAAATTATTT...TTTAG|GAG | 1 | 1 | 76.127 |
153300652 | GT-AG | 1 | 99.35531620794548 | 370 | TCONS_00000069.p1 27539149 | 12 | 46512 | 46881 | Physarum polycephalum 5791 | TAA|GTATCTTTCA...TTAAAATTGATT...AGTAG|ATA | 2 | 1 | 83.754 |
153300653 | GT-AG | 1 | 99.99922621934203 | 130 | TCONS_00000069.p1 27539149 | 13 | 46277 | 46406 | Physarum polycephalum 5791 | TCC|GTATCTTGTT...TTCGTTTTGACG...AACAG|ATA | 2 | 1 | 88.955 |
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]);