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 = 28131486
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
156033185 | GT-AG | 0 | 1.000000099473604e-05 | 42 | rna111.p1 28131486 | 1 | 261898 | 261939 | Planoprotostelium fungivorum 1890364 | GAG|GTGAGATAGA...GATGTTATGATA/GATGTTATGATA...TGCAG|GCC | 1 | 1 | 16.295 |
156033186 | GT-AG | 0 | 1.000000099473604e-05 | 50 | rna111.p1 28131486 | 2 | 262053 | 262102 | Planoprotostelium fungivorum 1890364 | AAG|GTGAGCACAT...CATCTCTAAATC/GCAACGCTCATT...TCCAG|GTC | 0 | 1 | 23.935 |
156033187 | GT-AG | 0 | 0.0001689584331726 | 47 | rna111.p1 28131486 | 3 | 262287 | 262333 | Planoprotostelium fungivorum 1890364 | CAG|GTACACATCC...ATCTCCTCGTTG/TGTAGATTGACA...AGCAG|CTC | 1 | 1 | 36.376 |
156033188 | GT-AG | 0 | 1.000000099473604e-05 | 49 | rna111.p1 28131486 | 4 | 262419 | 262467 | Planoprotostelium fungivorum 1890364 | ACC|GTGAGTGGAT...GACATCATGATT/TGATTCGTCATC...ACCAG|CCG | 2 | 1 | 42.123 |
156033189 | GT-AG | 0 | 1.000000099473604e-05 | 44 | rna111.p1 28131486 | 5 | 262635 | 262678 | Planoprotostelium fungivorum 1890364 | AGA|GTGAGTCTAC...AACGTTGTAGAT/TGGTGTCTGACG...ATCAG|AAT | 1 | 1 | 53.414 |
156033190 | GT-AG | 0 | 1.000000099473604e-05 | 40 | rna111.p1 28131486 | 6 | 262740 | 262779 | Planoprotostelium fungivorum 1890364 | GAC|GTGATCGATC...AACGCTCCAATC/AATCGACTCACG...TACAG|CGG | 2 | 1 | 57.539 |
156033191 | GT-AG | 0 | 1.000000099473604e-05 | 42 | rna111.p1 28131486 | 7 | 263015 | 263056 | Planoprotostelium fungivorum 1890364 | TTG|GTGAAAAGAT...TTATTCCTGATG/TTATTCCTGATG...TGTAG|ATC | 0 | 1 | 73.428 |
156033192 | GT-AG | 0 | 1.000000099473604e-05 | 41 | rna111.p1 28131486 | 8 | 263094 | 263134 | Planoprotostelium fungivorum 1890364 | TGG|GTGGGAGATG...AATGTCTAAAAA/TAATGTCTAAAA...CGCAG|GTC | 1 | 1 | 75.93 |
156033193 | GT-AG | 0 | 1.000000099473604e-05 | 48 | rna111.p1 28131486 | 9 | 263188 | 263235 | Planoprotostelium fungivorum 1890364 | AAC|GTGAGAATCC...TCTTCCATCATC/TCTTCCATCATC...TCCAG|GAA | 0 | 1 | 79.513 |
156033194 | GT-AG | 0 | 1.000000099473604e-05 | 48 | rna111.p1 28131486 | 10 | 263483 | 263530 | Planoprotostelium fungivorum 1890364 | AGG|GTGAGAAAAG...GTGAGCTGATAG/GGTGAGCTGATA...TGCAG|AGA | 1 | 1 | 96.214 |
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]);