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 = 15495772
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 83762361 | GT-AG | 0 | 6.685994189879745e-05 | 255 | rna-XM_041017859.1 15495772 | 1 | 3488025 | 3488279 | Glycine max 3847 | CAG|GTCTTTAATA...GATACTTTATTT/TTTTGTTTTATT...GCCAG|ACC | 2 | 1 | 5.639 |
| 83762362 | GT-AG | 0 | 8.628761565624283e-05 | 152 | rna-XM_041017859.1 15495772 | 2 | 3489343 | 3489494 | Glycine max 3847 | AAG|GTATAGTGAT...ATTGTTTTATTT/GTTTTATTTACT...TTTAG|GGG | 0 | 1 | 17.772 |
| 83762363 | GT-AG | 0 | 0.0001206143664436 | 417 | rna-XM_041017859.1 15495772 | 3 | 3489795 | 3490211 | Glycine max 3847 | CAG|GTTTTTTAAG...TTTGTTTTAGAT/CGTGTACTTATT...GGCAG|AAA | 0 | 1 | 21.196 |
| 83762364 | GC-AG | 0 | 1.000000099473604e-05 | 6979 | rna-XM_041017859.1 15495772 | 4 | 3492600 | 3499578 | Glycine max 3847 | GAA|GCCCTTTAAT...TGCTTTTTATTC/TTTTTATTCATG...AAGAG|TTG | 0 | 1 | 48.453 |
| 83762365 | GT-AG | 0 | 5.9275336036525765e-05 | 240 | rna-XM_041017859.1 15495772 | 5 | 3500103 | 3500342 | Glycine max 3847 | CAG|GTCTTTAATA...GATACTTTATTT/TTTTGTTTTATT...GCCAG|TCC | 2 | 1 | 54.434 |
| 83762366 | GT-AG | 0 | 0.0001824977420465 | 153 | rna-XM_041017859.1 15495772 | 6 | 3501406 | 3501558 | Glycine max 3847 | GAG|GTATAGTGAT...ATTGTTTTGATT/ATTGTTTTGATT...TTTAG|GGG | 0 | 1 | 66.568 |
| 83762367 | GT-AG | 0 | 0.0001278055697882 | 399 | rna-XM_041017859.1 15495772 | 7 | 3501862 | 3502260 | Glycine max 3847 | CAG|GTTTTTTAAG...TTTCTTTTAGAT/CATGTACTTATT...GGCAG|AAA | 0 | 1 | 70.026 |
| 83770891 | GC-AG | 0 | 1.000000099473604e-05 | 114 | rna-XM_041017859.1 15495772 | 8 | 3504327 | 3504440 | Glycine max 3847 | CTG|GCAAGTAATC...TTCATTTTATTT/CTAAATTTCATT...AACAG|GTT | 0 | 93.608 | |
| 83770892 | GT-AG | 0 | 0.0002433187151478 | 159 | rna-XM_041017859.1 15495772 | 9 | 3504604 | 3504762 | Glycine max 3847 | CCG|GTAACTAATC...TTTTATTTACAT/ATTTTATTTACA...AGCAG|GTT | 0 | 95.469 | |
| 83770893 | GT-AG | 0 | 0.0001637040807376 | 91 | rna-XM_041017859.1 15495772 | 10 | 3504831 | 3504921 | Glycine max 3847 | AAC|GTAAGTTGGC...ACTTCTTTAGCA/TTTGGCTTCATT...GCCAG|GAA | 0 | 96.245 | |
| 83770894 | GT-AG | 0 | 1.000000099473604e-05 | 583 | rna-XM_041017859.1 15495772 | 11 | 3504998 | 3505580 | Glycine max 3847 | AAG|GTAATTGGTA...GATTCCTTTGGG/TAGGTAATCATT...TTCAG|GAA | 0 | 97.112 |
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]);