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 = 6439385
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 33380601 | GT-AG | 0 | 1.049829909973864e-05 | 382 | rna-XM_030634774.1 6439385 | 1 | 89271873 | 89272254 | Cannabis sativa 3483 | AAG|GTTACTCATC...CAATTCTTGTTT/TCTTGTTTCACT...TGCAG|ACA | 1 | 1 | 0.348 |
| 33380602 | GT-AG | 0 | 1.000000099473604e-05 | 92 | rna-XM_030634774.1 6439385 | 2 | 89271623 | 89271714 | Cannabis sativa 3483 | AAG|GTTTGTGAGA...TCTATTTTGATA/TCTATTTTGATA...CACAG|GTT | 0 | 1 | 4.575 |
| 33380603 | GT-AG | 0 | 1.000000099473604e-05 | 80 | rna-XM_030634774.1 6439385 | 3 | 89271492 | 89271571 | Cannabis sativa 3483 | ATG|GTAATGGAAT...TTTATTTTATCT/ATTTATTTTATC...GGCAG|GTG | 0 | 1 | 5.939 |
| 33380604 | GT-AG | 0 | 0.0001823603357806 | 89 | rna-XM_030634774.1 6439385 | 4 | 89271241 | 89271329 | Cannabis sativa 3483 | TCA|GTACGGTTAC...TTCAGTTTAACT/TTCAGTTTAACT...TATAG|GTC | 0 | 1 | 10.273 |
| 33380605 | GT-AG | 0 | 1.000000099473604e-05 | 374 | rna-XM_030634774.1 6439385 | 5 | 89269826 | 89270199 | Cannabis sativa 3483 | AAG|GTAAGATAAG...GTGGTCTTATTG/ACACTTCTAATT...CTTAG|GTT | 0 | 1 | 38.122 |
| 33380606 | GT-AG | 0 | 0.1762143592281956 | 360 | rna-XM_030634774.1 6439385 | 6 | 89268998 | 89269357 | Cannabis sativa 3483 | AAG|GTATACTTTT...TTGGCTTTTATG/TTGGCTTTTATG...AACAG|TTG | 0 | 1 | 50.642 |
| 33380607 | GT-AG | 0 | 0.019527832759311 | 196 | rna-XM_030634774.1 6439385 | 7 | 89268661 | 89268856 | Cannabis sativa 3483 | CAG|GTATTTTCTT...AGATCCTTATAA/AATTTTTTGAAA...TGCAG|TTT | 0 | 1 | 54.414 |
| 33380608 | GT-AG | 0 | 1.000000099473604e-05 | 160 | rna-XM_030634774.1 6439385 | 8 | 89268396 | 89268555 | Cannabis sativa 3483 | GAG|GTTTGAACAT...AATTTCTTACAA/ATTTGTATGATT...CCCAG|GTG | 0 | 1 | 57.223 |
| 33380609 | GT-AG | 0 | 1.000000099473604e-05 | 84 | rna-XM_030634774.1 6439385 | 9 | 89268102 | 89268185 | Cannabis sativa 3483 | CAG|GTAAAAATAC...AGTAACTTATTA/TAGTAACTTATT...TACAG|GAG | 0 | 1 | 62.841 |
| 33380610 | GT-AG | 0 | 1.000000099473604e-05 | 107 | rna-XM_030634774.1 6439385 | 10 | 89267923 | 89268029 | Cannabis sativa 3483 | AGA|GTGAGTTGAT...ATTATTCTAATA/ATTATTCTAATA...AATAG|CAG | 0 | 1 | 64.767 |
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]);