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 = 25571511
This data as json, CSV (advanced)
Suggested facets: score, phase
id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
141263155 | GT-AG | 0 | 1.000000099473604e-05 | 1142 | rna-XM_012801917.2 25571511 | 1 | 35793929 | 35795070 | Otolemur garnettii 30611 | ACT|GTGAGTGATG...TGCTTCTTAGTT/GTAAATCTCATG...TACAG|GGG | 1 | 1 | 8.865 |
141263156 | GT-AG | 0 | 1.000000099473604e-05 | 2095 | rna-XM_012801917.2 25571511 | 2 | 35795143 | 35797237 | Otolemur garnettii 30611 | TGG|GTGAGTAGTA...ATATCTTTGTTT/TCCATTCTAACT...CTTAG|GTG | 1 | 1 | 11.05 |
141263157 | GT-AG | 0 | 1.000000099473604e-05 | 2761 | rna-XM_012801917.2 25571511 | 3 | 35798835 | 35801595 | Otolemur garnettii 30611 | TTG|GTAAGTGTGT...TTCTTTTTAAAA/AATACATTCACT...TTTAG|GCA | 2 | 1 | 59.532 |
141263158 | GT-AG | 0 | 1.000000099473604e-05 | 3467 | rna-XM_012801917.2 25571511 | 4 | 35801767 | 35805233 | Otolemur garnettii 30611 | AAG|GTAAGTCAGA...GATTTTGTAATT/GATTTTGTAATT...CAAAG|GTT | 2 | 1 | 64.724 |
141263159 | GT-AG | 0 | 1.000000099473604e-05 | 2526 | rna-XM_012801917.2 25571511 | 5 | 35805405 | 35807930 | Otolemur garnettii 30611 | GAG|GTAAGTCTTG...TTTTTTGTATTG/GAAATAGTCATT...TCCAG|CTT | 2 | 1 | 69.915 |
141263160 | GT-AG | 0 | 1.000000099473604e-05 | 434 | rna-XM_012801917.2 25571511 | 6 | 35808102 | 35808535 | Otolemur garnettii 30611 | GTC|GTGAGTCTGT...GTCTTCTCATCT/TGTCTTCTCATC...TTCAG|CTT | 2 | 1 | 75.106 |
141263161 | GT-AG | 0 | 1.000000099473604e-05 | 1467 | rna-XM_012801917.2 25571511 | 7 | 35808707 | 35810173 | Otolemur garnettii 30611 | TGT|GTAAGTGTCT...CTCCCATTGTCC/AGAGTAATGATT...CACAG|GCT | 2 | 1 | 80.298 |
141263162 | GT-AG | 0 | 0.0035771741216168 | 2393 | rna-XM_012801917.2 25571511 | 8 | 35810345 | 35812737 | Otolemur garnettii 30611 | GGA|GTAGGTTTTC...TCTGTTTTATTT/CTCTGTTTTATT...TGCAG|ATT | 2 | 1 | 85.489 |
141263163 | GT-AG | 0 | 1.000000099473604e-05 | 7209 | rna-XM_012801917.2 25571511 | 9 | 35812909 | 35820117 | Otolemur garnettii 30611 | TGG|GTGAGTTCAA...TCATTTTTGTCT/AGGTAGGTCATT...CACAG|GTT | 2 | 1 | 90.68 |
141263164 | GT-AG | 0 | 1.2395040331723303e-05 | 700 | rna-XM_012801917.2 25571511 | 10 | 35820289 | 35820988 | Otolemur garnettii 30611 | AGG|GTAAGTCTTG...GTTCCCTTGTTT/ACTGAGTTCAAA...CTCAG|GTT | 2 | 1 | 95.871 |
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]);