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 = 20642268
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 110536179 | GT-AG | 0 | 0.0019377237701073 | 392 | rna-XM_029095261.1 20642268 | 3 | 16476538 | 16476929 | Malus domestica 3750 | TAG|GTAACTGTGC...CTGTTTTTAACT/CTGTTTTTAACT...TGCAG|GCG | 2 | 1 | 7.99 |
| 110536180 | GT-AG | 0 | 2.1155578801272505e-05 | 239 | rna-XM_029095261.1 20642268 | 4 | 16476239 | 16476477 | Malus domestica 3750 | CCG|GTAATGTTCA...TCCATTTTATTT/ATGGTTCTCAGT...CCCAG|ACT | 2 | 1 | 8.817 |
| 110536181 | GT-AG | 0 | 4.9441862224345215e-05 | 365 | rna-XM_029095261.1 20642268 | 5 | 16475768 | 16476132 | Malus domestica 3750 | GAG|GTACAATTTT...GTGTTTATAATG/TTTATAATGACT...TCCAG|GAA | 0 | 1 | 10.277 |
| 110536182 | GT-AG | 0 | 0.0002309778936277 | 135 | rna-XM_029095261.1 20642268 | 6 | 16475564 | 16475698 | Malus domestica 3750 | GAG|GTACATCACT...ATTCTCTTAATT/GTATTTTTCAAT...TCCAG|GCC | 0 | 1 | 11.227 |
| 110536183 | GT-AG | 0 | 2.0449287881436947e-05 | 161 | rna-XM_029095261.1 20642268 | 7 | 16475349 | 16475509 | Malus domestica 3750 | AAG|GTAGTTTATC...GCATGTTTAATT/GCATGTTTAATT...GGCAG|GCT | 0 | 1 | 11.971 |
| 110536184 | GT-AG | 0 | 0.0115250458878452 | 537 | rna-XM_029095261.1 20642268 | 8 | 16474704 | 16475240 | Malus domestica 3750 | GAG|GTATGCCTTT...TTATTCTTGTTT/TTCTTGTTTATA...TACAG|GGT | 0 | 1 | 13.459 |
| 110536185 | GT-AG | 0 | 0.0010830388001818 | 166 | rna-XM_029095261.1 20642268 | 9 | 16474388 | 16474553 | Malus domestica 3750 | CAG|GTATATATTT...ATATTATTGATG/ATATTATTGATG...TGCAG|GTC | 0 | 1 | 15.526 |
| 110536186 | GT-AG | 0 | 0.0005233440643686 | 96 | rna-XM_029095261.1 20642268 | 10 | 16473944 | 16474039 | Malus domestica 3750 | CAG|GTATTACTTT...ATTATCTTAATC/ATTATCTTAATC...TACAG|GAG | 0 | 1 | 20.32 |
| 110536187 | GT-AG | 0 | 1.000000099473604e-05 | 600 | rna-XM_029095261.1 20642268 | 11 | 16470939 | 16471538 | Malus domestica 3750 | AAG|GTGCATTCTC...AGTCTCCTAACA/AGTCTCCTAACA...TTCAG|GTA | 2 | 1 | 53.451 |
| 110536188 | GT-AG | 0 | 1.000000099473604e-05 | 1176 | rna-XM_029095261.1 20642268 | 12 | 16467162 | 16468337 | Malus domestica 3750 | CAG|GTAATTGTAC...CTAATTTGAACA/ATATTGTTCACC...GTCAG|GGA | 2 | 1 | 89.282 |
| 110536189 | GT-AG | 0 | 1.000000099473604e-05 | 567 | rna-XM_029095261.1 20642268 | 13 | 16466270 | 16466836 | Malus domestica 3750 | CAG|GTTTGGTCTT...CCTGTCTTATAT/ACCTGTCTTATA...TGCAG|AAA | 0 | 1 | 93.759 |
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]);