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)
9 rows where transcript_id = 4024496
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 20804595 | GT-AG | 0 | 1.0996521314844596e-05 | 3263 | rna-XM_010309067.1 4024496 | 1 | 1774 | 5036 | Balearica regulorum 925459 | AAG|GTATGGCATG...TATCACTTGATT/ATTTATATCACT...ATTAG|GTT | 2 | 1 | 1.973 |
| 20804596 | GT-AG | 0 | 1.000000099473604e-05 | 541 | rna-XM_010309067.1 4024496 | 2 | 5173 | 5713 | Balearica regulorum 925459 | AGG|GTAAAAAATC...TTTTTCTTTTTT/TAATTTCTAATG...AACAG|GAA | 0 | 1 | 11.224 |
| 20804597 | GT-AG | 0 | 1.000000099473604e-05 | 1203 | rna-XM_010309067.1 4024496 | 3 | 5868 | 7070 | Balearica regulorum 925459 | CAG|GTGCTTTTAT...ATCATTTTAATT/ATAATACTAATT...TGTAG|GGT | 1 | 1 | 21.701 |
| 20804598 | GT-AG | 0 | 0.001600575535061 | 1598 | rna-XM_010309067.1 4024496 | 4 | 7318 | 8915 | Balearica regulorum 925459 | AAT|GTATGTACGG...CTACTCTTGTTG/TGAAACATGATA...TTCAG|ATC | 2 | 1 | 38.503 |
| 20804599 | GT-AG | 0 | 1.000000099473604e-05 | 2594 | rna-XM_010309067.1 4024496 | 5 | 9039 | 11632 | Balearica regulorum 925459 | CAG|GTAATAAATT...TTGTTTTTAATA/TTGTTTTTAATA...TTTAG|GTG | 2 | 1 | 46.871 |
| 20804600 | GT-AG | 0 | 0.000233812617347 | 2199 | rna-XM_010309067.1 4024496 | 6 | 11731 | 13929 | Balearica regulorum 925459 | AAG|GTATTTCTGT...AGAGCTTTGTTC/GCTTTGTTCAAT...TTTAG|GAC | 1 | 1 | 53.537 |
| 20804601 | GT-AG | 0 | 1.000000099473604e-05 | 2211 | rna-XM_010309067.1 4024496 | 7 | 14022 | 16232 | Balearica regulorum 925459 | AAA|GTAAGAGGAT...CATTTCTTAAGT/TGCTTTCTAACA...CACAG|ATT | 0 | 1 | 59.796 |
| 20804602 | GT-AG | 0 | 1.01614994641424e-05 | 537 | rna-XM_010309067.1 4024496 | 8 | 16466 | 17002 | Balearica regulorum 925459 | AAG|GTAGGTGTTT...TGTTTTTTATTT/TTGTTTTTTATT...ATTAG|TGA | 2 | 1 | 75.646 |
| 20804603 | GT-AG | 0 | 3.6212464251115386e-05 | 3440 | rna-XM_010309067.1 4024496 | 9 | 17135 | 20574 | Balearica regulorum 925459 | AGA|GTAAGTGTTT...TAAGTTTTAATT/GTTGTCTTCATT...GCTAG|GAT | 2 | 1 | 84.626 |
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]);