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 = 32210567
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 179854368 | GT-AG | 0 | 1.000000099473604e-05 | 361306 | rna-XM_047251827.1 32210567 | 1 | 64801425 | 65162730 | Schistocerca piceifrons 274613 | AGG|GTGAGTACGC...GGAGCGCTGACG/GGAGCGCTGACG...TTCAG|CTG | 0 | 1 | 2.379 |
| 179854369 | GT-AG | 0 | 1.3229057911712731e-05 | 122470 | rna-XM_047251827.1 32210567 | 2 | 64678829 | 64801298 | Schistocerca piceifrons 274613 | AAG|GTAGGCCACA...TATTTTTTATTT/TTTTTATTTATT...TTTAG|GAT | 0 | 1 | 5.009 |
| 179854370 | GT-AG | 0 | 1.000000099473604e-05 | 98854 | rna-XM_047251827.1 32210567 | 3 | 64579789 | 64678642 | Schistocerca piceifrons 274613 | AAG|GTAGGCAGGC...GGCCCTTTGGCG/GAGAGTGTGATC...CGCAG|GTG | 0 | 1 | 8.892 |
| 179854371 | GT-AG | 0 | 1.000000099473604e-05 | 30012 | rna-XM_047251827.1 32210567 | 4 | 64549608 | 64579619 | Schistocerca piceifrons 274613 | CAG|GTCAGCCGCT...CCCCTCTTGCTG/CTCTTGCTGACG...TGCAG|GTA | 1 | 1 | 12.419 |
| 179854372 | GT-AG | 0 | 1.000000099473604e-05 | 11349 | rna-XM_047251827.1 32210567 | 5 | 64538087 | 64549435 | Schistocerca piceifrons 274613 | CGA|GTAAGACACA...ATAATTTTATTG/TATAATTTTATT...CACAG|CCG | 2 | 1 | 16.009 |
| 179854373 | GT-AG | 0 | 0.0006245749858989 | 9833 | rna-XM_047251827.1 32210567 | 6 | 64528148 | 64537980 | Schistocerca piceifrons 274613 | AAG|GTATGTGTAA...GCTTTCTTACTT/TATTGTCTCATA...AACAG|ACT | 0 | 1 | 18.222 |
| 179854374 | GT-AG | 0 | 1.000000099473604e-05 | 6406 | rna-XM_047251827.1 32210567 | 7 | 64521516 | 64527921 | Schistocerca piceifrons 274613 | AAG|GTGAGAAGTG...TATTTTTTGTCT/TTTTGTCTTATG...ACTAG|ATG | 1 | 1 | 22.939 |
| 179854375 | GT-AG | 0 | 1.000000099473604e-05 | 13983 | rna-XM_047251827.1 32210567 | 8 | 64507374 | 64521356 | Schistocerca piceifrons 274613 | CAG|GTAGGTGATG...AGATTGTTAGTA/TTAGTACTAACT...AACAG|CGG | 1 | 1 | 26.258 |
| 179854376 | GT-AG | 0 | 0.0001388584514287 | 11129 | rna-XM_047251827.1 32210567 | 9 | 64496062 | 64507190 | Schistocerca piceifrons 274613 | AAG|GTATGTAAGC...ATTGCTTTATAT/GATTTTTTCAAT...TACAG|AGA | 1 | 1 | 30.077 |
| 179854377 | GT-AG | 0 | 4.1944824166129925e-05 | 41577 | rna-XM_047251827.1 32210567 | 10 | 64454347 | 64495923 | Schistocerca piceifrons 274613 | TGG|GTAAGCAGTT...TTGATTTTAATG/AATGTGCTCACA...TGCAG|ATG | 1 | 1 | 32.958 |
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]);