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)
11 rows where transcript_id = 31411897
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
174865711 | GT-AG | 0 | 1.000000099473604e-05 | 3394 | rna-NCT539_LOCUS732 31411897 | 1 | 3711314 | 3714707 | Rotaria sp. silwood2 2762512 | TCA|GTAAGAACAT...ATCTTTTTATTC/TATCTTTTTATT...TCTAG|ACA | 1 | 1 | 2.376 |
174865712 | GT-AG | 0 | 0.0002806189954275 | 63 | rna-NCT539_LOCUS732 31411897 | 2 | 3714806 | 3714868 | Rotaria sp. silwood2 2762512 | CAG|GTTTGTTTTA...TTTTCATTGAAA/GTTTTTTTCATT...ATTAG|TCA | 0 | 1 | 5.703 |
174865713 | GT-AG | 0 | 1.000000099473604e-05 | 1463 | rna-NCT539_LOCUS732 31411897 | 3 | 3715460 | 3716922 | Rotaria sp. silwood2 2762512 | ATG|GTTAGTTTAA...GAAGCCTCAATC/AATCAATTCATA...TGAAG|AGA | 0 | 1 | 25.764 |
174865714 | GT-AG | 0 | 0.0111780360569093 | 66 | rna-NCT539_LOCUS732 31411897 | 4 | 3717082 | 3717147 | Rotaria sp. silwood2 2762512 | CTT|GTATGTTAAA...TATTATTTATTT/TATTTATTTATT...TCTAG|ACT | 0 | 1 | 31.161 |
174865715 | GT-AG | 0 | 1.000000099473604e-05 | 70 | rna-NCT539_LOCUS732 31411897 | 5 | 3717311 | 3717380 | Rotaria sp. silwood2 2762512 | TAG|GTAAGAATAG...ATTTCGTTAAAA/TAAAATTTAATC...TCTAG|GAG | 1 | 1 | 36.694 |
174865716 | GT-AG | 0 | 1.000000099473604e-05 | 60 | rna-NCT539_LOCUS732 31411897 | 6 | 3717502 | 3717561 | Rotaria sp. silwood2 2762512 | AAG|GTTAGTTTAA...TTTTTTTTAATT/TTTTTTTTAATT...TAAAG|GTT | 2 | 1 | 40.801 |
174865717 | GT-AG | 0 | 1.1067658437856283e-05 | 1394 | rna-NCT539_LOCUS732 31411897 | 7 | 3717983 | 3719376 | Rotaria sp. silwood2 2762512 | CAG|GTAAATATTA...CTATTTTTGATA/CTATTTTTGATA...TTCAG|GAT | 0 | 1 | 55.092 |
174865718 | GT-AG | 0 | 0.0003298175528691 | 52 | rna-NCT539_LOCUS732 31411897 | 8 | 3719569 | 3719620 | Rotaria sp. silwood2 2762512 | CGT|GTACGATTTA...TATTTATTATTA/TTATTTATTATT...TCTAG|GAT | 0 | 1 | 61.609 |
174865719 | GT-AG | 0 | 0.0042837627325627 | 528 | rna-NCT539_LOCUS732 31411897 | 9 | 3720056 | 3720583 | Rotaria sp. silwood2 2762512 | AAA|GTATTGAATT...ATGTTCTTATTT/TTTTTTTTCATG...TTAAG|ACA | 0 | 1 | 76.375 |
174865720 | GT-AG | 0 | 0.0001754929411554 | 70 | rna-NCT539_LOCUS732 31411897 | 10 | 3720752 | 3720821 | Rotaria sp. silwood2 2762512 | CAA|GTAAATTTTT...ATTAGTTTGATT/ATTAGTTTGATT...TTTAG|GAT | 0 | 1 | 82.077 |
174865721 | GT-AG | 0 | 7.578459631047713e-05 | 72 | rna-NCT539_LOCUS732 31411897 | 11 | 3721010 | 3721081 | Rotaria sp. silwood2 2762512 | TAA|GTAAAAATTG...TTTTTCTTAAAT/TATTTTTTTATG...TATAG|AGA | 2 | 1 | 88.459 |
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]);