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)
6 rows where transcript_id = 6061960
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
31221535 | GT-AG | 0 | 6.130315570687433e-05 | 18099 | rna-XM_030458448.1 6061960 | 1 | 181892750 | 181910848 | Calypte anna 9244 | CAG|GTACCAGGCT...TTTTTTTTTCCT/AATGGTTTAAAT...TCCAG|CAA | 2 | 1 | 1.987 |
31221536 | GT-AG | 0 | 4.76009721627503e-05 | 2055 | rna-XM_030458448.1 6061960 | 2 | 181911007 | 181913061 | Calypte anna 9244 | CCA|GTGAGTTTCA...TTTCTCTTAGTC/CTTTCTCTTAGT...TCCAG|TTA | 1 | 1 | 4.626 |
31221537 | GT-AG | 0 | 1.000000099473604e-05 | 104 | rna-XM_030458448.1 6061960 | 3 | 181913137 | 181913240 | Calypte anna 9244 | AAG|GTAAGAAAAA...AAATTTTTATAA/CAAATTTTTATA...TTCAG|ATC | 1 | 1 | 5.878 |
31221538 | GT-AG | 0 | 1.000000099473604e-05 | 4501 | rna-XM_030458448.1 6061960 | 4 | 181913386 | 181917886 | Calypte anna 9244 | ACG|GTGAGCTATA...CATTCCTTTTCA/TTCCTTTTCAAA...TACAG|GTA | 2 | 1 | 8.3 |
31221539 | GT-AG | 0 | 1.000000099473604e-05 | 1602 | rna-XM_030458448.1 6061960 | 5 | 181917936 | 181919537 | Calypte anna 9244 | ACG|GTAAGGAGCT...TGCATGTTGACT/TGCATGTTGACT...AACAG|GCT | 0 | 1 | 9.118 |
31221540 | GT-AG | 0 | 1.000000099473604e-05 | 876 | rna-XM_030458448.1 6061960 | 6 | 181919665 | 181920540 | Calypte anna 9244 | GTG|GTAAGTGTTG...TTTTTTTTTTCT/TTTTTTTCTATT...TGCAG|TTC | 1 | 1 | 11.239 |
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]);