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)
11 rows where transcript_id = 27391015
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 152560634 | GT-AG | 0 | 0.0005732343594605 | 108 | rna-XM_008815452.3 27391015 | 1 | 10285284 | 10285391 | Phoenix dactylifera 42345 | AAG|GTATAGATTT...GTCTTCTTGATG/ATCTTTTTGATC...GATAG|GAC | 0 | 1 | 4.242 |
| 152560635 | GT-AG | 0 | 2.8552999457388305e-05 | 287 | rna-XM_008815452.3 27391015 | 2 | 10285467 | 10285753 | Phoenix dactylifera 42345 | CAG|GTGACTTCCT...TTATTCTAAAAT/TTTATTCTAAAA...TTTAG|TTT | 0 | 1 | 5.848 |
| 152560636 | GT-AG | 0 | 1.916081717387057e-05 | 266 | rna-XM_008815452.3 27391015 | 3 | 10285877 | 10286142 | Phoenix dactylifera 42345 | CAG|GTACTAATTC...CTTTTCTTTATG/TTTATGTTGACT...TGCAG|TTA | 0 | 1 | 8.483 |
| 152560637 | GT-AG | 0 | 1.000000099473604e-05 | 94 | rna-XM_008815452.3 27391015 | 4 | 10286189 | 10286282 | Phoenix dactylifera 42345 | ATG|GTGAGAGGGC...TTTTCCTTTAAT/GAGGTGTTTATT...TGTAG|GTG | 1 | 1 | 9.469 |
| 152560638 | GT-AG | 0 | 2.794739736869324e-05 | 2409 | rna-XM_008815452.3 27391015 | 5 | 10286444 | 10288852 | Phoenix dactylifera 42345 | GAA|GTTGGTTCTT...TCTTTTTTAAAT/TCTTTTTTAAAT...TCCAG|AGG | 0 | 1 | 12.918 |
| 152560639 | GT-AG | 0 | 0.1249295283383407 | 2814 | rna-XM_008815452.3 27391015 | 6 | 10288933 | 10291746 | Phoenix dactylifera 42345 | GGG|GTATGCATTA...TGTCCTTTAAAT/GAATGTCTCATC...TTCAG|TTG | 2 | 1 | 14.632 |
| 152560640 | GT-AG | 0 | 1.000000099473604e-05 | 14010 | rna-XM_008815452.3 27391015 | 7 | 10291853 | 10305862 | Phoenix dactylifera 42345 | AAG|GTGGTTCCTA...CTTTCTTTCAAA/CTTTCTTTCAAA...TGCAG|ATA | 0 | 1 | 16.902 |
| 152560641 | GT-AG | 0 | 1.000000099473604e-05 | 87 | rna-XM_008815452.3 27391015 | 8 | 10306040 | 10306126 | Phoenix dactylifera 42345 | AGG|GTGAGAAACT...TAAGACTTGATC/CACATACTCATA...TGTAG|GTT | 0 | 1 | 20.694 |
| 152560642 | GT-AG | 0 | 0.0001327318734204 | 679 | rna-XM_008815452.3 27391015 | 9 | 10309307 | 10309985 | Phoenix dactylifera 42345 | CAG|GTATATGAAA...GAACTTTTGATT/AAATATTTTATC...TGCAG|GTA | 0 | 1 | 88.817 |
| 152560643 | GT-AG | 0 | 2.138438390687919e-05 | 78 | rna-XM_008815452.3 27391015 | 10 | 10310231 | 10310308 | Phoenix dactylifera 42345 | CAG|GTTTGATTCA...ATGTTTTTATTC/CATGTTTTTATT...TGCAG|CCC | 2 | 1 | 94.066 |
| 152560644 | GT-AG | 0 | 0.00152824499432 | 3294 | rna-XM_008815452.3 27391015 | 11 | 10310409 | 10313702 | Phoenix dactylifera 42345 | CAG|GTACATTTCA...TTTGTTTTATTG/TTTTGTTTTATT...AATAG|GAG | 0 | 1 | 96.208 |
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]);