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)
9 rows where transcript_id = 720795
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3822463 | GT-AG | 0 | 0.0001172946647593 | 58 | rna-gnl|I4U23|000409-T1 720795 | 1 | 1597128 | 1597185 | Adineta vaga 104782 | AAT|GTAAGCGTGA...TCAATTTTGATT/TTTGATTTCATA...TCTAG|TGG | 0 | 1 | 0.111 |
3822464 | GT-AG | 0 | 2.709788480707451e-05 | 53 | rna-gnl|I4U23|000409-T1 720795 | 2 | 1597019 | 1597071 | Adineta vaga 104782 | AGA|GTAAGTTGTC...CGTCTTTAAATC/TTAAATCTAATT...TCTAG|TTC | 2 | 1 | 1.148 |
3822465 | GT-AG | 0 | 2.5933133504606456e-05 | 62 | rna-gnl|I4U23|000409-T1 720795 | 3 | 1596551 | 1596612 | Adineta vaga 104782 | TAT|GTAAGTTATA...TTTGTTTTGTTT/GTTTTTGTTATA...GATAG|GAT | 0 | 1 | 8.667 |
3822466 | GT-AG | 0 | 1.000000099473604e-05 | 59 | rna-gnl|I4U23|000409-T1 720795 | 4 | 1596440 | 1596498 | Adineta vaga 104782 | CAG|GTAAAGTTTT...ATGATTTTAATT/ATGATTTTAATT...TTTAG|GTC | 1 | 1 | 9.63 |
3822467 | GT-AG | 0 | 1.180932708971236e-05 | 59 | rna-gnl|I4U23|000409-T1 720795 | 5 | 1595678 | 1595736 | Adineta vaga 104782 | ACG|GTATGAACAA...TTTTCTCTATTC/TTCAATTTAACA...TCTAG|TGG | 2 | 1 | 22.648 |
3822468 | GT-AG | 0 | 0.1475076846519823 | 56 | rna-gnl|I4U23|000409-T1 720795 | 6 | 1595555 | 1595610 | Adineta vaga 104782 | ACA|GTATGTATTC...TCTTTTTTAACA/TCTTTTTTAACA...TTTAG|GTT | 0 | 1 | 23.889 |
3822469 | GT-AG | 0 | 1.7959323001142602e-05 | 59 | rna-gnl|I4U23|000409-T1 720795 | 7 | 1594347 | 1594405 | Adineta vaga 104782 | GTG|GTATAGAATT...TTCATTTTCATT/TTCATTTTCATT...TTTAG|GGC | 0 | 1 | 45.167 |
3822470 | GT-AG | 0 | 5.022293232312615e-05 | 53 | rna-gnl|I4U23|000409-T1 720795 | 8 | 1593006 | 1593058 | Adineta vaga 104782 | CAG|GTAGATTTAT...TTTTCTTTGCTT/GAATAATTAATT...TTTAG|GAT | 1 | 1 | 69.019 |
3822471 | GT-AG | 0 | 1.000000099473604e-05 | 65 | rna-gnl|I4U23|000409-T1 720795 | 9 | 1591624 | 1591688 | Adineta vaga 104782 | CAG|GTAAATACAA...GATCCTTTATTT/TAGTTTTTCAAA...TTCAG|GAA | 1 | 1 | 93.407 |
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]);