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 = 18637092
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 99479613 | GT-AG | 0 | 2.207769724851896e-05 | 647 | Joasc.01G093600.1.v1.1 18637092 | 1 | 63419844 | 63420490 | Joinvillea ascendens 38723 | CAG|GTCCCAAGAA...AAGCCCTTATCT/CAAGCCCTTATC...TTCAG|GAC | 0 | 1 | 10.696 |
| 99479614 | GC-AG | 0 | 1.000000099473604e-05 | 80 | Joasc.01G093600.1.v1.1 18637092 | 2 | 63420731 | 63420810 | Joinvillea ascendens 38723 | GCA|GCTATGTCTT...CTACTGTTAGTT/ATGAACCTCACT...TGCAG|GAG | 0 | 1 | 18.769 |
| 99479615 | GT-AG | 0 | 1.000000099473604e-05 | 399 | Joasc.01G093600.1.v1.1 18637092 | 3 | 63420981 | 63421379 | Joinvillea ascendens 38723 | AGG|GTGAGGTTTG...TTTGCATTATAT/TTTTGCATTATA...AACAG|ATA | 2 | 1 | 24.487 |
| 99479616 | GT-AG | 0 | 1.5505116319099387e-05 | 90 | Joasc.01G093600.1.v1.1 18637092 | 4 | 63421599 | 63421688 | Joinvillea ascendens 38723 | CAG|GTACGTACAT...CTATTCTTATAT/TCTATTCTTATA...AACAG|GTA | 2 | 1 | 31.853 |
| 99479617 | GT-AG | 0 | 2.48053410280735e-05 | 82 | Joasc.01G093600.1.v1.1 18637092 | 5 | 63421876 | 63421957 | Joinvillea ascendens 38723 | CAG|GTCTAATTTA...CATTTTATGATC/CATTTTATGATC...GACAG|TTC | 0 | 1 | 38.143 |
| 99479618 | GT-AG | 0 | 0.003475489229003 | 106 | Joasc.01G093600.1.v1.1 18637092 | 6 | 63422010 | 63422115 | Joinvillea ascendens 38723 | TCG|GTAATCTTTT...CTGTTCTTGTTT/AGGGGAATCATT...TGCAG|GAA | 1 | 1 | 39.892 |
| 99479619 | GT-AG | 0 | 1.000000099473604e-05 | 232 | Joasc.01G093600.1.v1.1 18637092 | 7 | 63422346 | 63422577 | Joinvillea ascendens 38723 | GAG|GTTAGTTCAA...TTGTCCTTTGCA/TTGGTATTCATT...TGTAG|CTT | 0 | 1 | 47.629 |
| 99479620 | GT-AG | 0 | 2.4307848558546383e-05 | 269 | Joasc.01G093600.1.v1.1 18637092 | 8 | 63422677 | 63422945 | Joinvillea ascendens 38723 | AAA|GTAAGTGTAT...TGAACCTTGACA/CAATTGTTTACA...AACAG|TTT | 0 | 1 | 50.959 |
| 99479621 | GT-AG | 0 | 0.0009027899097253 | 767 | Joasc.01G093600.1.v1.1 18637092 | 9 | 63423653 | 63424419 | Joinvillea ascendens 38723 | CAG|GTATTTCTCT...GTTTTCTCAGAG/AGTTTTCTCAGA...TGCAG|CAT | 2 | 1 | 74.739 |
| 99479622 | GT-AG | 0 | 0.000113696549791 | 611 | Joasc.01G093600.1.v1.1 18637092 | 10 | 63424909 | 63425519 | Joinvillea ascendens 38723 | TGG|GTAAGTTTAT...CTGCTCTTGACA/GATATTTTCATC...GCTAG|GTT | 2 | 1 | 91.187 |
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]);