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 = 35103494
This data as json, CSV (advanced)
Suggested facets: score, phase, in_cds
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 197657410 | GT-AG | 0 | 1.000000099473604e-05 | 375 | rna-XM_007050835.2 35103494 | 2 | 31163648 | 31164022 | Theobroma cacao 3641 | AAG|GTATGAAGTC...TGATTGTTAAAT/AATAGACTGATG...AACAG|GTT | 0 | 1 | 47.657 |
| 197657411 | GT-AG | 0 | 1.000000099473604e-05 | 579 | rna-XM_007050835.2 35103494 | 3 | 31164344 | 31164922 | Theobroma cacao 3641 | AAG|GTGACATTAT...TTTATTTTATCT/ATTTATTTTATC...TGCAG|GAA | 0 | 1 | 54.589 |
| 197657412 | GT-AG | 0 | 1.000000099473604e-05 | 106 | rna-XM_007050835.2 35103494 | 4 | 31165010 | 31165115 | Theobroma cacao 3641 | TTG|GTAAGTGGAC...TGTTTCTAAAAA/ATGTTTCTAAAA...TCCAG|GTG | 0 | 1 | 56.467 |
| 197657413 | GT-AG | 0 | 0.0001016003384284 | 198 | rna-XM_007050835.2 35103494 | 5 | 31165746 | 31165943 | Theobroma cacao 3641 | CGG|GTAGGGTTTC...CTTTCTTTAATC/CTTTCTTTAATC...CACAG|GCA | 0 | 1 | 70.071 |
| 197657414 | GT-AG | 0 | 1.845217951412147e-05 | 462 | rna-XM_007050835.2 35103494 | 6 | 31166109 | 31166570 | Theobroma cacao 3641 | CGG|GTACGGCTCT...TTTCTCTTGAAT/ATGATATTTATT...TGCAG|GGA | 0 | 1 | 73.634 |
| 197657415 | GT-AG | 0 | 1.000000099473604e-05 | 512 | rna-XM_007050835.2 35103494 | 7 | 31166866 | 31167377 | Theobroma cacao 3641 | CAG|GTAATTGTAT...GATCTTTTATAA/ACTTGACTTATT...TGCAG|AAA | 1 | 1 | 80.004 |
| 197657416 | GT-AG | 0 | 0.0001778373980297 | 164 | rna-XM_007050835.2 35103494 | 8 | 31167593 | 31167756 | Theobroma cacao 3641 | CAG|GTAACTGGCT...GATATTTTGATT/GATATTTTGATT...AACAG|GTT | 0 | 1 | 84.647 |
| 197657417 | GT-AG | 0 | 0.0016970126242892 | 185 | rna-XM_007050835.2 35103494 | 9 | 31168063 | 31168247 | Theobroma cacao 3641 | AAG|GTAAACTTTG...GAAGTTTTAATT/GAAGTTTTAATT...TGCAG|AGC | 0 | 1 | 91.255 |
| 197657418 | GT-AG | 0 | 2.31960467238236e-05 | 84 | rna-XM_007050835.2 35103494 | 10 | 31168312 | 31168395 | Theobroma cacao 3641 | TAG|GTAAGTTATT...TTCCTTTTGATT/TTCCTTTTGATT...TTCAG|TGG | 1 | 1 | 92.637 |
| 197657419 | GT-AG | 0 | 0.0002573076669427 | 196 | rna-XM_007050835.2 35103494 | 11 | 31168636 | 31168831 | Theobroma cacao 3641 | CAG|GTTTGCGCTT...TGTCCTTTAACA/ACGAATTTTATA...CACAG|GAA | 1 | 1 | 97.819 |
| 197671371 | GT-AG | 0 | 1.000000099473604e-05 | 912 | rna-XM_007050835.2 35103494 | 1 | 31160550 | 31161461 | Theobroma cacao 3641 | CAA|GTAAGTACTT...TGTTACATAGTA/TCCTTTATTACG...TACAG|GGA | 0 | 2.181 |
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]);