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 = 18699319
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 99735254 | GT-AG | 0 | 1.7172076578522275e-05 | 469 | rna-XM_019000841.2 18699319 | 1 | 37719235 | 37719703 | Juglans regia 51240 | CAG|GTCCCAGTTC...TTATTGTTGAAA/TTATTGTTGAAA...TGCAG|TTC | 0 | 1 | 5.928 |
| 99735255 | GT-AG | 0 | 8.23533554652483e-05 | 129 | rna-XM_019000841.2 18699319 | 2 | 37719827 | 37719955 | Juglans regia 51240 | CAG|GTTTATCTTT...TTCTTCTCATCA/GTTCTTCTCATC...TGCAG|CTA | 0 | 1 | 8.599 |
| 99735256 | GT-AG | 0 | 1.4688162023579924e-05 | 93 | rna-XM_019000841.2 18699319 | 3 | 37720002 | 37720094 | Juglans regia 51240 | ATG|GTAAGTTCTA...TTTGTCCTAACA/TTTGTCCTAACA...CTCAG|GTG | 1 | 1 | 9.598 |
| 99735257 | GT-AG | 0 | 1.000000099473604e-05 | 3755 | rna-XM_019000841.2 18699319 | 4 | 37720256 | 37724010 | Juglans regia 51240 | GAA|GTCAGTTCTT...AACCATTTAATT/ATTTAATTGATT...TTCAG|AGA | 0 | 1 | 13.094 |
| 99735258 | GT-AG | 0 | 1.000000099473604e-05 | 2727 | rna-XM_019000841.2 18699319 | 5 | 37724091 | 37726817 | Juglans regia 51240 | AGG|GTGAGCTTTC...TTCCCCTTCTCT/CATCATCTAACT...TTTAG|GTG | 2 | 1 | 14.832 |
| 99735259 | GT-AG | 0 | 0.0049054985354913 | 254 | rna-XM_019000841.2 18699319 | 6 | 37726924 | 37727177 | Juglans regia 51240 | AAG|GTACTCTCTC...TTTATCTCAATG/TTTGCATTCATT...TGCAG|ATT | 0 | 1 | 17.134 |
| 99735260 | GT-AG | 0 | 1.2181154325765426e-05 | 111 | rna-XM_019000841.2 18699319 | 7 | 37727355 | 37727465 | Juglans regia 51240 | AGG|GTAAACAGCT...TTCTTTGTAATT/TTATGACTTACA...TGTAG|GTT | 0 | 1 | 20.977 |
| 99735261 | GT-AG | 0 | 1.000000099473604e-05 | 725 | rna-XM_019000841.2 18699319 | 8 | 37730583 | 37731307 | Juglans regia 51240 | CAG|GTACATGGAG...TTTGCCTTTTTT/CTGTTTATCACA...TTTAG|GTG | 0 | 1 | 88.664 |
| 99735262 | GT-AG | 0 | 0.0021020730646276 | 132 | rna-XM_019000841.2 18699319 | 9 | 37731553 | 37731684 | Juglans regia 51240 | CAG|GTTTCAATCT...TAACTCTTGAAT/TGATTATTAACT...TGCAG|TCC | 2 | 1 | 93.985 |
| 99735263 | GT-AG | 0 | 0.0028763004226923 | 133 | rna-XM_019000841.2 18699319 | 10 | 37731785 | 37731917 | Juglans regia 51240 | CAG|GTATGTTTTA...GCAACTGTAACT/GCTTGTTTTATG...CACAG|GAG | 0 | 1 | 96.156 |
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]);