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 = 15550460
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 84003648 | GT-AG | 0 | 6.685994189879745e-05 | 255 | rna-XM_028369172.1 15550460 | 1 | 3507436 | 3507690 | Glycine soja 3848 | CAG|GTCTTTAATA...GATACTTTATTT/TTTTGTTTTATT...GCCAG|ACC | 2 | 1 | 5.626 |
| 84003649 | GT-AG | 0 | 8.628761565624283e-05 | 152 | rna-XM_028369172.1 15550460 | 2 | 3508754 | 3508905 | Glycine soja 3848 | AAG|GTATAGTGAT...ATTGTTTTATTT/GTTTTATTTACT...TTTAG|GGG | 0 | 1 | 17.731 |
| 84003650 | GT-AG | 0 | 0.0001206143664436 | 417 | rna-XM_028369172.1 15550460 | 3 | 3509206 | 3509622 | Glycine soja 3848 | CAG|GTTTTTTAAG...TTTGTTTTAGAT/CGTGTACTTATT...GGCAG|AAA | 0 | 1 | 21.148 |
| 84003651 | GC-AG | 0 | 1.000000099473604e-05 | 7098 | rna-XM_028369172.1 15550460 | 4 | 3512011 | 3519108 | Glycine soja 3848 | GAA|GCCCTTTAAT...TGCTTTTTATTC/TTTTTATTCATG...AAGAG|TTG | 0 | 1 | 48.343 |
| 84003652 | GT-AG | 0 | 5.9275336036525765e-05 | 240 | rna-XM_028369172.1 15550460 | 5 | 3519633 | 3519872 | Glycine soja 3848 | CAG|GTCTTTAATA...GATACTTTATTT/TTTTGTTTTATT...GCCAG|TCC | 2 | 1 | 54.31 |
| 84003653 | GT-AG | 0 | 0.0001824977420465 | 153 | rna-XM_028369172.1 15550460 | 6 | 3520936 | 3521088 | Glycine soja 3848 | GAG|GTATAGTGAT...ATTGTTTTGATT/ATTGTTTTGATT...TTTAG|GGG | 0 | 1 | 66.416 |
| 84003654 | GT-AG | 0 | 0.0001278055697882 | 399 | rna-XM_028369172.1 15550460 | 7 | 3521392 | 3521790 | Glycine soja 3848 | CAG|GTTTTTTAAG...TTTCTTTTAGAT/CATGTACTTATT...GGCAG|AAA | 0 | 1 | 69.867 |
| 84012240 | GC-AG | 0 | 1.000000099473604e-05 | 114 | rna-XM_028369172.1 15550460 | 8 | 3523857 | 3523970 | Glycine soja 3848 | CTG|GCAAGTAATC...TTCATTTTATTT/CTAAATTTCATT...AACAG|GTT | 0 | 93.395 | |
| 84012241 | GT-AG | 0 | 0.0002433187151478 | 159 | rna-XM_028369172.1 15550460 | 9 | 3524134 | 3524292 | Glycine soja 3848 | CCG|GTAACTAATC...TTTTATTTACAT/ATTTTATTTACA...AGCAG|GTT | 0 | 95.251 | |
| 84012242 | GT-AG | 0 | 0.0001637040807376 | 91 | rna-XM_028369172.1 15550460 | 10 | 3524361 | 3524451 | Glycine soja 3848 | AAC|GTAAGTTGGC...ACTTCTTTAGCA/TTTGGCTTCATT...GCCAG|GAA | 0 | 96.026 | |
| 84012243 | GT-AG | 0 | 1.000000099473604e-05 | 583 | rna-XM_028369172.1 15550460 | 11 | 3524528 | 3525110 | Glycine soja 3848 | AAG|GTAATTGGTA...GATTCCTTTGGG/TAGGTAATCATT...TTCAG|GAA | 0 | 96.891 |
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]);