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 = 6439367
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 33380457 | GT-AG | 0 | 1.000000099473604e-05 | 909 | rna-XM_030634985.1 6439367 | 1 | 90175938 | 90176846 | Cannabis sativa 3483 | GAG|GTAAAGTTTT...GCTTTCTTATGA/CTGTATTTCATT...TGCAG|GGT | 0 | 1 | 4.009 |
| 33380458 | GT-AG | 0 | 1.000000099473604e-05 | 169 | rna-XM_030634985.1 6439367 | 2 | 90176929 | 90177097 | Cannabis sativa 3483 | AAG|GTTAGTCATA...AATGTTTTGAAT/TTTTGAATCACT...GACAG|ATA | 1 | 1 | 6.077 |
| 33380459 | GT-AG | 0 | 0.0001709314058246 | 114 | rna-XM_030634985.1 6439367 | 3 | 90177163 | 90177276 | Cannabis sativa 3483 | GAG|GTTTGTTGAA...ACTTTCTTGATG/GTGCTTTTAACT...TTCAG|AAT | 0 | 1 | 7.716 |
| 33380460 | GT-AG | 0 | 1.1438028455931796e-05 | 864 | rna-XM_030634985.1 6439367 | 4 | 90177361 | 90178224 | Cannabis sativa 3483 | TCA|GTAAGTACCC...TTTCTATTAAAA/TGCTTTGTGATT...TGGAG|GCA | 0 | 1 | 9.834 |
| 33380461 | GT-AG | 0 | 1.000000099473604e-05 | 484 | rna-XM_030634985.1 6439367 | 5 | 90178306 | 90178789 | Cannabis sativa 3483 | GAG|GTGAGTTTGC...TCACTTTTAATT/TTTTAATTCATA...TGCAG|GTA | 0 | 1 | 11.876 |
| 33380462 | GT-AG | 0 | 0.0019004607191854 | 80 | rna-XM_030634985.1 6439367 | 6 | 90178955 | 90179034 | Cannabis sativa 3483 | ATG|GTATGCATGC...GATGCTTTTAAT/CTATCAATTATT...TGCAG|GAG | 0 | 1 | 16.036 |
| 33380463 | GT-AG | 0 | 1.000000099473604e-05 | 85 | rna-XM_030634985.1 6439367 | 7 | 90179134 | 90179218 | Cannabis sativa 3483 | AAG|GTAATTAATT...TAAATTTTAGTT/TTAAATTTTAGT...TGCAG|CTT | 0 | 1 | 18.533 |
| 33380464 | GT-AG | 0 | 1.638288753271869e-05 | 618 | rna-XM_030634985.1 6439367 | 8 | 90180559 | 90181176 | Cannabis sativa 3483 | GAG|GTACGGTGTT...TCGTTATTAACA/TCGTTATTAACA...TTCAG|ACA | 2 | 1 | 52.32 |
| 33380465 | GT-AG | 0 | 8.873736853675848e-05 | 126 | rna-XM_030634985.1 6439367 | 9 | 90181404 | 90181529 | Cannabis sativa 3483 | AAG|GTTTGTTCTA...TTTCCCTTGCCG/TATTGGTTGATC...TGCAG|GAA | 1 | 1 | 58.043 |
| 33380466 | GT-AG | 0 | 0.000271729656813 | 548 | rna-XM_030634985.1 6439367 | 10 | 90181679 | 90182226 | Cannabis sativa 3483 | ACT|GTAAGTCTCG...TTTCCGTTGACG/ATTTGTTTAATG...TGCAG|CAT | 0 | 1 | 61.8 |
| 33380467 | GT-AG | 0 | 0.0004831183999186 | 82 | rna-XM_030634985.1 6439367 | 11 | 90182266 | 90182347 | Cannabis sativa 3483 | CTG|GTATGTATAT...TCCTCATTGAAA/GCCATCCTCATT...TGCAG|ATG | 0 | 1 | 62.784 |
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]);