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 = 23944501
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 130193244 | GT-AG | 0 | 2.668823532778155e-05 | 950 | rna-gnl|WGS:VZSV|NOTJUL_R06835_mrna 23944501 | 1 | 12116441 | 12117390 | Nothocercus julius 2585813 | GAG|GTAAGCCTGA...TTTGCCTTGCTG/ATGGCTTTCACA...AAAAG|GTG | 0 | 1 | 9.689 |
| 130193245 | GT-AG | 0 | 1.000000099473604e-05 | 1154 | rna-gnl|WGS:VZSV|NOTJUL_R06835_mrna 23944501 | 2 | 12115150 | 12116303 | Nothocercus julius 2585813 | GTG|GTGAGAATGA...CTTTCCTTATTT/TCTTTCCTTATT...TTCAG|GAC | 2 | 1 | 18.038 |
| 130193246 | GT-AG | 0 | 9.17355442041169e-05 | 832 | rna-gnl|WGS:VZSV|NOTJUL_R06835_mrna 23944501 | 3 | 12114095 | 12114926 | Nothocercus julius 2585813 | AAG|GTATTAAATA...ACTCCATTAACT/TTGTTTTTCACC...ACCAG|AAA | 0 | 1 | 31.627 |
| 130193247 | GT-AG | 0 | 1.000000099473604e-05 | 647 | rna-gnl|WGS:VZSV|NOTJUL_R06835_mrna 23944501 | 4 | 12113333 | 12113979 | Nothocercus julius 2585813 | GAG|GTAATGGTCA...TTGTTTTTGATG/TTGTTTTTGATG...TATAG|AGT | 1 | 1 | 38.635 |
| 130193248 | GT-AG | 0 | 1.000000099473604e-05 | 275 | rna-gnl|WGS:VZSV|NOTJUL_R06835_mrna 23944501 | 5 | 12112920 | 12113194 | Nothocercus julius 2585813 | AAG|GTGACTATAA...TGCTCTTTCACA/TGCTCTTTCACA...TGTAG|GCA | 1 | 1 | 47.044 |
| 130193249 | GT-AG | 0 | 1.000000099473604e-05 | 811 | rna-gnl|WGS:VZSV|NOTJUL_R06835_mrna 23944501 | 6 | 12112001 | 12112811 | Nothocercus julius 2585813 | TTG|GTAAGATATT...AAAGTTGTAACT/AAAGTTGTAACT...TGCAG|AGG | 1 | 1 | 53.626 |
| 130193250 | GT-AG | 0 | 0.0064845285435736 | 467 | rna-gnl|WGS:VZSV|NOTJUL_R06835_mrna 23944501 | 7 | 12111324 | 12111790 | Nothocercus julius 2585813 | ATG|GTTTTCTGAA...ATATCTTTATTT/AATATCTTTATT...GATAG|ACT | 1 | 1 | 66.423 |
| 130193251 | GT-AG | 0 | 1.000000099473604e-05 | 1237 | rna-gnl|WGS:VZSV|NOTJUL_R06835_mrna 23944501 | 8 | 12109929 | 12111165 | Nothocercus julius 2585813 | TTG|GTAAGAAAAG...TAAATCTTATTT/CTATTTTTCATT...TCCAG|CCT | 0 | 1 | 76.051 |
| 130193252 | GT-AG | 0 | 1.000000099473604e-05 | 502 | rna-gnl|WGS:VZSV|NOTJUL_R06835_mrna 23944501 | 9 | 12109240 | 12109741 | Nothocercus julius 2585813 | CTG|GTGAGTTATC...AAAATCTTACAG/TAAAATCTTACA...CTCAG|GTG | 1 | 1 | 87.447 |
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]);