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 = 18637068
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, score, length, phase, in_cds
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 99479319 | GT-AG | 0 | 1.000000099473604e-05 | 438 | Joasc.01G157200.1.v1.1 18637068 | 2 | 82707184 | 82707621 | Joinvillea ascendens 38723 | CAG|GTGAATCTCT...TATAGCTTAACT/TTAACTCTAATC...TACAG|ATA | 2 | 1 | 8.768 |
| 99479320 | GT-AG | 0 | 0.0002232734842481 | 79 | Joasc.01G157200.1.v1.1 18637068 | 3 | 82707805 | 82707883 | Joinvillea ascendens 38723 | AAG|GTATGTGTGG...AAATTATTGACT/AAATTATTGACT...ATCAG|ATT | 2 | 1 | 14.047 |
| 99479321 | GT-AG | 0 | 1.000000099473604e-05 | 91 | Joasc.01G157200.1.v1.1 18637068 | 4 | 82707996 | 82708086 | Joinvillea ascendens 38723 | AAG|GTAGGTCTGT...AACTTATTGATA/AACTTATTGATA...TGTAG|GAA | 0 | 1 | 17.277 |
| 99479322 | GT-AG | 0 | 0.0001297632490976 | 1131 | Joasc.01G157200.1.v1.1 18637068 | 5 | 82708121 | 82709251 | Joinvillea ascendens 38723 | CAG|GTATGTTCAA...AGTGTCATATTT/GTCATATTTATT...GACAG|GAG | 1 | 1 | 18.258 |
| 99479323 | GT-AG | 0 | 6.140344930346665e-05 | 99 | Joasc.01G157200.1.v1.1 18637068 | 6 | 82709287 | 82709385 | Joinvillea ascendens 38723 | CAA|GTAATTTCCG...TCTATTTTACTT/AAAGTTCTCATT...TTCAG|GGA | 0 | 1 | 19.267 |
| 99479324 | GT-AG | 0 | 1.000000099473604e-05 | 79 | Joasc.01G157200.1.v1.1 18637068 | 7 | 82709421 | 82709499 | Joinvillea ascendens 38723 | AAA|GTAATGTCTT...TTTAGTTTATCC/TATCTACTCACA...GACAG|GAA | 2 | 1 | 20.277 |
| 99479325 | GT-AG | 0 | 3.3826390329048974e-05 | 332 | Joasc.01G157200.1.v1.1 18637068 | 8 | 82709653 | 82709984 | Joinvillea ascendens 38723 | AAG|GTTCTTTGTG...TTAATTTTGATG/TTAATTTTGATG...TGCAG|AAA | 2 | 1 | 24.69 |
| 99479326 | GT-AG | 0 | 1.000000099473604e-05 | 538 | Joasc.01G157200.1.v1.1 18637068 | 9 | 82712447 | 82712984 | Joinvillea ascendens 38723 | CAG|GTATGGCACC...TGAGTATTATTA/TATGTGTTTACT...TTCAG|CTC | 1 | 1 | 95.702 |
| 99479327 | GC-AG | 0 | 1.000000099473604e-05 | 81 | Joasc.01G157200.1.v1.1 18637068 | 10 | 82713066 | 82713146 | Joinvillea ascendens 38723 | AAG|GCTAGTTTCT...CCTCTATTAACT/TATTAACTCATG...TACAG|CAT | 1 | 1 | 98.039 |
| 99486187 | GT-AG | 0 | 1.000000099473604e-05 | 609 | Joasc.01G157200.1.v1.1 18637068 | 1 | 82706409 | 82707017 | Joinvillea ascendens 38723 | GAG|GTTTATGAGG...TTTTTCTTGTTG/GAGGTAATAATA...TTCAG|GCC | 0 | 6.721 |
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]);