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 = 38015465
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 209849514 | GT-AG | 0 | 1.000000099473604e-05 | 820 | rna-XM_028072801.1 38015465 | 1 | 20271369 | 20272188 | Vigna unguiculata 3917 | GAG|GTGATTTGAT...TGTCTGTTAATT/TGTCTGTTAATT...GTTAG|ATG | 1 | 1 | 1.398 |
| 209849515 | GT-AG | 0 | 0.0824465095287112 | 97 | rna-XM_028072801.1 38015465 | 2 | 20271209 | 20271305 | Vigna unguiculata 3917 | AAG|GTATCGTGTT...TTTTATTTAATG/TTTTTATTTAAT...TTCAG|ATC | 1 | 1 | 2.712 |
| 209849516 | GT-AG | 0 | 3.639923372006381e-05 | 665 | rna-XM_028072801.1 38015465 | 3 | 20270452 | 20271116 | Vigna unguiculata 3917 | GGG|GTACGTATTA...ACATCTCTACTT/TTTGATATGATA...CTCAG|GTG | 0 | 1 | 4.631 |
| 209849517 | GT-AG | 0 | 0.0001134114887794 | 130 | rna-XM_028072801.1 38015465 | 4 | 20269497 | 20269626 | Vigna unguiculata 3917 | GAG|GTATGCGAAA...ATTTTCTTTTCA/TATTTTTTCATC...TTTAG|GTT | 0 | 1 | 21.84 |
| 209849518 | GT-AG | 0 | 0.0005239323709712 | 85 | rna-XM_028072801.1 38015465 | 5 | 20269312 | 20269396 | Vigna unguiculata 3917 | CAG|GTAACGTATG...TCTTTCTTATCG/CTCTTTCTTATC...TTCAG|GCC | 1 | 1 | 23.926 |
| 209849519 | GT-AG | 0 | 1.000000099473604e-05 | 107 | rna-XM_028072801.1 38015465 | 6 | 20269055 | 20269161 | Vigna unguiculata 3917 | GGG|GTGAGAAATC...GTTTTTTTACAC/AGTTTTTTTACA...TTTAG|AAG | 1 | 1 | 27.055 |
| 209849520 | GT-AG | 0 | 1.000000099473604e-05 | 133 | rna-XM_028072801.1 38015465 | 7 | 20268136 | 20268268 | Vigna unguiculata 3917 | AGG|GTAATATATT...CTTCTTTTATTC/CTTTTATTCATA...TGTAG|ATA | 1 | 1 | 43.45 |
| 209849521 | GT-AG | 0 | 1.000000099473604e-05 | 77 | rna-XM_028072801.1 38015465 | 8 | 20265902 | 20265978 | Vigna unguiculata 3917 | CAG|GTAATATAGC...TTTTTGTTGAAC/TTTTTGTTGAAC...TGCAG|GTG | 1 | 1 | 88.444 |
| 209849522 | GT-AG | 0 | 0.0003794953197217 | 613 | rna-XM_028072801.1 38015465 | 9 | 20265222 | 20265834 | Vigna unguiculata 3917 | CAG|GTAGCATCTT...TTGTCTTTTATT/TTGTCTTTTATT...GGCAG|GAT | 2 | 1 | 89.841 |
| 209849523 | GT-AG | 0 | 1.1348191319936871e-05 | 77 | rna-XM_028072801.1 38015465 | 10 | 20264996 | 20265072 | Vigna unguiculata 3917 | AAG|GTATGTGATT...GCAGTCTGAAAT/TTACATTTTACG...GGTAG|GGA | 1 | 1 | 92.95 |
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]);