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)
8 rows where transcript_id = 18073477
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 96691634 | GT-AG | 0 | 2.5449237188309544e-05 | 7163 | rna-gnl|WGS:VZSZ|IBISTR_R13011_mrna 18073477 | 1 | 5291 | 12453 | Ibidorhyncha struthersii 425643 | TGT|GTAAGTATAA...TGCATCTTAAGT/GCTGTTCTAATT...TTCAG|CAT | 2 | 1 | 12.65 |
| 96691635 | GT-AG | 0 | 1.000000099473604e-05 | 1367 | rna-gnl|WGS:VZSZ|IBISTR_R13011_mrna 18073477 | 2 | 12564 | 13930 | Ibidorhyncha struthersii 425643 | AAT|GTAAGGCTGT...TATATTTTGATT/TATATTTTGATT...TTTAG|GTT | 1 | 1 | 22.807 |
| 96691636 | GT-AG | 0 | 1.000000099473604e-05 | 3027 | rna-gnl|WGS:VZSZ|IBISTR_R13011_mrna 18073477 | 3 | 13981 | 17007 | Ibidorhyncha struthersii 425643 | GAG|GTAAGTCCTG...TCAGTTTTATCT/TTTATTCTTATT...CTCAG|AGA | 0 | 1 | 27.424 |
| 96691637 | GT-AG | 0 | 0.0019441849972475 | 4797 | rna-gnl|WGS:VZSZ|IBISTR_R13011_mrna 18073477 | 4 | 17101 | 21897 | Ibidorhyncha struthersii 425643 | AAA|GTAAGCTCTT...CATCCTTTATTT/ATGAGTTTTATT...CCTAG|CTC | 0 | 1 | 36.011 |
| 96691638 | GT-AG | 0 | 1.000000099473604e-05 | 717 | rna-gnl|WGS:VZSZ|IBISTR_R13011_mrna 18073477 | 5 | 21992 | 22708 | Ibidorhyncha struthersii 425643 | AGG|GTAAGGCTTT...GCTTGGTTAACT/GCTTGGTTAACT...TCCAG|TCA | 1 | 1 | 44.691 |
| 96691639 | GT-AG | 0 | 0.0022765035381119 | 1972 | rna-gnl|WGS:VZSZ|IBISTR_R13011_mrna 18073477 | 6 | 22894 | 24865 | Ibidorhyncha struthersii 425643 | AAG|GTACACTATT...CAACTCTTTATT/CAACTCTTTATT...TTCAG|CAA | 0 | 1 | 61.773 |
| 96691640 | GT-AG | 0 | 1.000000099473604e-05 | 2097 | rna-gnl|WGS:VZSZ|IBISTR_R13011_mrna 18073477 | 7 | 25049 | 27145 | Ibidorhyncha struthersii 425643 | CAG|GTAATAAACT...TGTTTCTTAACA/TTGTTTCTTAAC...TCCAG|TTT | 0 | 1 | 78.67 |
| 96691641 | GT-AG | 0 | 1.000000099473604e-05 | 6884 | rna-gnl|WGS:VZSZ|IBISTR_R13011_mrna 18073477 | 8 | 27290 | 34173 | Ibidorhyncha struthersii 425643 | AAG|GTAAGACATA...TCCTCCTTCATT/TCCTCCTTCATT...TGCAG|GAT | 0 | 1 | 91.967 |
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]);