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 = 27539151
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
153300666 | GT-AG | 0 | 1.000000099473604e-05 | 211 | TCONS_00000071.p1 27539151 | 1 | 81274 | 81484 | Physarum polycephalum 5791 | CAG|GTACGCACAC...TAAACTTTAATA...AATAG|GGA | 0 | 1 | 1.818 |
153300667 | GT-AG | 0 | 0.0039849173457056 | 77 | TCONS_00000071.p1 27539151 | 2 | 81075 | 81151 | Physarum polycephalum 5791 | GAG|GTAGTTTTGT...CTCCCCTTATCA...CAAAG|GTG | 2 | 1 | 7.98 |
153300668 | GT-AG | 0 | 0.001962746975747 | 131 | TCONS_00000071.p1 27539151 | 3 | 80879 | 81009 | Physarum polycephalum 5791 | AAG|GTAACCCCCT...GTTGTATTTATT...TTTAG|GTT | 1 | 1 | 11.263 |
153300669 | GT-AG | 0 | 4.015068766379833e-05 | 64 | TCONS_00000071.p1 27539151 | 4 | 80700 | 80763 | Physarum polycephalum 5791 | GAG|GTGCCCCCCC...TTGTTTTTAATA...TCTAG|ATA | 2 | 1 | 17.071 |
153300670 | GT-AG | 0 | 0.0033998230139367 | 1464 | TCONS_00000071.p1 27539151 | 5 | 79052 | 80515 | Physarum polycephalum 5791 | GAT|GTATGCCCCC...TAAAAATTTATT...TTCAG|GCA | 0 | 1 | 26.364 |
153300671 | GT-AG | 0 | 1.000000099473604e-05 | 168 | TCONS_00000071.p1 27539151 | 6 | 78857 | 79024 | Physarum polycephalum 5791 | ATG|GTAAAAATCA...TAAAAATTTATT...TTCAG|GCA | 0 | 1 | 27.727 |
153300672 | GT-AG | 0 | 4.173686725139221e-05 | 238 | TCONS_00000071.p1 27539151 | 7 | 78496 | 78733 | Physarum polycephalum 5791 | CAG|GTATGAAGGG...ATTTATTTAAAA...CACAG|TGG | 0 | 1 | 33.939 |
153300673 | GT-AG | 0 | 1.000000099473604e-05 | 80 | TCONS_00000071.p1 27539151 | 8 | 78323 | 78402 | Physarum polycephalum 5791 | AAG|GTTATACCCT...TTCCCCTTTTCT...AATAG|GCT | 0 | 1 | 38.636 |
153300674 | GT-AG | 0 | 1.000000099473604e-05 | 875 | TCONS_00000071.p1 27539151 | 9 | 77321 | 78195 | Physarum polycephalum 5791 | CAG|GTACAACACC...TAAATATTAATA...CCTAG|GAA | 1 | 1 | 45.051 |
153300675 | GT-AG | 0 | 0.1140123406091402 | 918 | TCONS_00000071.p1 27539151 | 10 | 76303 | 77220 | Physarum polycephalum 5791 | TCA|GTGTCGCCCG...TTTTTTTTAATT...TGCAG|GTG | 2 | 1 | 50.101 |
153300676 | AT-AC | 1 | 99.999999999997 | 322 | TCONS_00000071.p1 27539151 | 11 | 75306 | 75627 | Physarum polycephalum 5791 | CTC|ATATCCAAAT...TTCTCTTTGACT...CTTAC|CCC | 2 | 1 | 84.192 |
153300677 | GT-AG | 0 | 0.7337640116440473 | 372 | TCONS_00000071.p1 27539151 | 12 | 74798 | 75169 | Physarum polycephalum 5791 | GCA|GTAACCAATT...AATGTTTGGACC...TGCAG|GGA | 0 | 1 | 91.061 |
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]);