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 = 13705557
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 72997250 | GT-AG | 0 | 1.000000099473604e-05 | 23672 | rna-XM_016191606.1 13705557 | 1 | 15213687 | 15237358 | Erinaceus europaeus 9365 | CAG|GTAGGAGTGC...TTTCTCTTGATC/TTTCTCTTGATC...TCTAG|GTC | 0 | 1 | 45.262 |
| 72997251 | GT-AG | 0 | 0.0020806420097265 | 2101 | rna-XM_016191606.1 13705557 | 2 | 15211505 | 15213605 | Erinaceus europaeus 9365 | GAG|GTAACGTTTC...TTTTTCTTTTCT/ACGTGTCTGATT...ACTAG|ACG | 0 | 1 | 49.081 |
| 72997252 | GT-AG | 0 | 1.000000099473604e-05 | 22241 | rna-XM_016191606.1 13705557 | 3 | 15189227 | 15211467 | Erinaceus europaeus 9365 | CTG|GTAAGTGACT...GTCACCTTCAAG/AGGCCACTCACC...CTCAG|TTC | 1 | 1 | 50.825 |
| 72997253 | GT-AG | 0 | 1.000000099473604e-05 | 1600 | rna-XM_016191606.1 13705557 | 4 | 15187481 | 15189080 | Erinaceus europaeus 9365 | AAG|GTAGGGCGGC...TCTTTCTTTTCT/TTTGTGCCTACC...CGCAG|AGG | 0 | 1 | 57.709 |
| 72997254 | GT-AG | 0 | 1.000000099473604e-05 | 4423 | rna-XM_016191606.1 13705557 | 5 | 15183022 | 15187444 | Erinaceus europaeus 9365 | GCG|GTGTGTAGGA...ATTTCTTTTGCG/CTTTTGCGCATC...CTTAG|AAT | 0 | 1 | 59.406 |
| 72997255 | GT-AG | 0 | 1.000000099473604e-05 | 9666 | rna-XM_016191606.1 13705557 | 6 | 15173269 | 15182934 | Erinaceus europaeus 9365 | CAG|GTGAGTGATC...GCCTCCTTACCC/CGCCTCCTTACC...ATCAG|GAG | 0 | 1 | 63.508 |
| 72997256 | GT-AG | 0 | 1.0572142513360696e-05 | 2505 | rna-XM_016191606.1 13705557 | 7 | 15170578 | 15173082 | Erinaceus europaeus 9365 | GAC|GTAAGTAAAT...CTCTCTTTGAAC/CTCTCTTTGAAC...CCCAG|GCC | 0 | 1 | 72.277 |
| 72997257 | GT-AG | 0 | 1.000000099473604e-05 | 563 | rna-XM_016191606.1 13705557 | 8 | 15169835 | 15170397 | Erinaceus europaeus 9365 | GAG|GTGAGGGCGC...GTGCCCTTCCCT/GCAGCCCCCACT...TGCAG|CTG | 0 | 1 | 80.764 |
| 72997258 | GT-AG | 0 | 1.000000099473604e-05 | 11271 | rna-XM_016191606.1 13705557 | 9 | 15158351 | 15169621 | Erinaceus europaeus 9365 | AAG|GTGGGCGCCT...CCCACCTGACCT/ACCCACCTGACC...CCCAG|GGT | 0 | 1 | 90.806 |
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]);