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 = 16457614
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 87512421 | GT-AG | 0 | 0.0003875365087842 | 74 | Gotom.A01G188400.1.v1.1 16457614 | 1 | 91924282 | 91924355 | Gossypium tomentosum 34277 | AAG|GTACACACAC...ACAACCTTAAAT/CTTCGTTTGATT...TACAG|TAT | 0 | 1 | 5.295 |
| 87512422 | GT-AG | 0 | 0.0007291115348255 | 69 | Gotom.A01G188400.1.v1.1 16457614 | 2 | 91924411 | 91924479 | Gossypium tomentosum 34277 | TCG|GTATGTGCAA...TTCATTTTAACT/CAATGTTTCATT...TCCAG|AGG | 1 | 1 | 6.86 |
| 87512423 | GT-AG | 0 | 0.0001113107965348 | 116 | Gotom.A01G188400.1.v1.1 16457614 | 3 | 91924620 | 91924735 | Gossypium tomentosum 34277 | ACT|GTCATTTCTG...CATGTTTTATCT/TTTTATCTCATA...TTCAG|ACA | 0 | 1 | 10.845 |
| 87512424 | GT-AG | 0 | 0.0335579912789837 | 36 | Gotom.A01G188400.1.v1.1 16457614 | 4 | 91924966 | 91925001 | Gossypium tomentosum 34277 | TTC|GTATGTTGCT...GACGCTATAAAA/GACGCTATAAAA...TTCAG|CAA | 2 | 1 | 17.393 |
| 87512425 | GT-AG | 0 | 1.000000099473604e-05 | 102 | Gotom.A01G188400.1.v1.1 16457614 | 5 | 91925194 | 91925295 | Gossypium tomentosum 34277 | ATT|GTGAGTTTCA...GATTTCTTGTCT/TTAATTCTCAAG...TTCAG|GTC | 2 | 1 | 22.858 |
| 87512426 | GT-AG | 0 | 3.51500912361487e-05 | 36 | Gotom.A01G188400.1.v1.1 16457614 | 6 | 91925518 | 91925553 | Gossypium tomentosum 34277 | AGT|GTAAGCAGGA...TAGGCCTCGTTG/AAAGATGGTAGG...GGGAG|TGG | 2 | 1 | 29.177 |
| 87512427 | GT-AG | 0 | 1.000000099473604e-05 | 88 | Gotom.A01G188400.1.v1.1 16457614 | 7 | 91925807 | 91925894 | Gossypium tomentosum 34277 | CAA|GTAAGTCCCA...CTTGTTTTGCTG/GTTTTGCTGAGT...ATCAG|GTA | 0 | 1 | 36.379 |
| 87512428 | GT-AG | 0 | 1.000000099473604e-05 | 33 | Gotom.A01G188400.1.v1.1 16457614 | 8 | 91926103 | 91926135 | Gossypium tomentosum 34277 | TCC|GTTAAGCGGA...TAGTGGTTGTTC/TTGATAGTGGTT...ATCAG|GAA | 1 | 1 | 42.3 |
| 87512429 | GT-AG | 0 | 0.0002274437619709 | 70 | Gotom.A01G188400.1.v1.1 16457614 | 9 | 91927856 | 91927925 | Gossypium tomentosum 34277 | AAG|GTAACTATCG...ATATCATTTACA/TTTACATTTACA...TGCAG|TTC | 2 | 1 | 91.261 |
| 87512430 | GT-AA | 0 | 0.0001579183807957 | 45 | Gotom.A01G188400.1.v1.1 16457614 | 10 | 91928084 | 91928128 | Gossypium tomentosum 34277 | AGA|GTCTAGTCTA...AAAGCATTAGAG/GAGAAGATGATG...AACAA|GTG | 1 | 1 | 95.759 |
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]);