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 = 32210489
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, score, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 179852653 | GT-AG | 0 | 1.000000099473604e-05 | 31475 | rna-XM_047249972.1 32210489 | 1 | 794132745 | 794164219 | Schistocerca piceifrons 274613 | CAG|GTCAGTCCGC...GCAGTGTTAGTC/GTGTTAGTCAGC...CACAG|CGT | 2 | 1 | 2.883 |
| 179852654 | GT-GG | 0 | 1.000000099473604e-05 | 1204 | rna-XM_047249972.1 32210489 | 2 | 794131135 | 794132338 | Schistocerca piceifrons 274613 | AAG|GTACAAGGCC...AGTGCCGCAACA/AAGTGCCGCAAC...CATGG|ACT | 0 | 1 | 7.842 |
| 179852655 | GT-AG | 0 | 1.000000099473604e-05 | 2103 | rna-XM_047249972.1 32210489 | 3 | 794129011 | 794131113 | Schistocerca piceifrons 274613 | ATA|GTGCTGGGGG...TGTTTTTTAAAC/TGTTTTTTAAAC...GGCAG|TGG | 0 | 1 | 8.098 |
| 179852656 | GC-AG | 0 | 1.000000099473604e-05 | 15593 | rna-XM_047249972.1 32210489 | 4 | 794113385 | 794128977 | Schistocerca piceifrons 274613 | ACA|GCTCAGACGT...CGCACTGTAGTT/CGCTGTGTGACA...CGCAG|GTG | 0 | 1 | 8.501 |
| 179852657 | GT-AG | 0 | 1.000000099473604e-05 | 148 | rna-XM_047249972.1 32210489 | 5 | 794113042 | 794113189 | Schistocerca piceifrons 274613 | CCC|GTCGGCCAGA...CCGGCCTCCACC/ACTTCTCCCACT...CACAG|AGG | 0 | 1 | 10.883 |
| 179852658 | GT-AG | 0 | 0.0004737377516887 | 206 | rna-XM_047249972.1 32210489 | 6 | 794112765 | 794112970 | Schistocerca piceifrons 274613 | ATC|GTTACTACAA...CTTTCTTTAGAA/CTACTATTAACA...CCCAG|GAT | 2 | 1 | 11.75 |
| 179852659 | GT-AG | 0 | 1.000000099473604e-05 | 10299 | rna-XM_047249972.1 32210489 | 7 | 794096222 | 794106520 | Schistocerca piceifrons 274613 | AAG|GTGGCTGCTC...TATTTTGTGGTG/AGATGAGTGACG...TGCAG|AGT | 0 | 1 | 88.018 |
| 179852660 | GT-AG | 0 | 1.000000099473604e-05 | 16757 | rna-XM_047249972.1 32210489 | 8 | 794079246 | 794096002 | Schistocerca piceifrons 274613 | CAG|GTCAGCGGCG...CCGGCATTCGCA/GGCATTCGCACT...TGCAG|ACG | 0 | 1 | 90.693 |
| 179852661 | GT-AG | 0 | 1.000000099473604e-05 | 8445 | rna-XM_047249972.1 32210489 | 9 | 794070635 | 794079079 | Schistocerca piceifrons 274613 | TCG|GTAAGGCGCT...GTGATGTTAGCC/TGTGATGTTAGC...CGCAG|GCG | 1 | 1 | 92.72 |
| 179852662 | GT-AG | 0 | 3.616413672968056e-05 | 13261 | rna-XM_047249972.1 32210489 | 10 | 794057000 | 794070260 | Schistocerca piceifrons 274613 | CCT|GTAAATCGTC...ATAACATTACTG/AATAACATTACT...CACAG|GTA | 0 | 1 | 97.288 |
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]);