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)
10 rows where transcript_id = 15550477
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, score, length, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 84003940 | GT-AG | 0 | 1.000000099473604e-05 | 115 | rna-XM_028324457.1 15550477 | 2 | 56534194 | 56534308 | Glycine soja 3848 | GAT|GTGAGTATCT...ATTTCATTGACT/CTGTTTCTGATT...AATAG|GTA | 0 | 1 | 25.061 |
| 84003941 | GT-AG | 0 | 0.0647882912678381 | 107 | rna-XM_028324457.1 15550477 | 3 | 56534001 | 56534107 | Glycine soja 3848 | CAC|GTATGCCTAA...GTTCCTTTCTCT/ATGAATTTTACA...ATCAG|CTA | 2 | 1 | 26.807 |
| 84003942 | GT-AG | 0 | 1.000000099473604e-05 | 181 | rna-XM_028324457.1 15550477 | 4 | 56533725 | 56533905 | Glycine soja 3848 | TGG|GTAAGAGTGA...CTGACTTTTATG/TGTATGCTGACT...TTCAG|ATG | 1 | 1 | 28.737 |
| 84003943 | GT-AG | 0 | 3.718542991829923e-05 | 154 | rna-XM_028324457.1 15550477 | 5 | 56533268 | 56533421 | Glycine soja 3848 | AAG|GTATGGATTT...GTTTATTTATTC/TTTGTTCTTATG...AATAG|GTA | 1 | 1 | 34.89 |
| 84003944 | GT-AG | 0 | 1.5423187618804883e-05 | 249 | rna-XM_028324457.1 15550477 | 6 | 56532521 | 56532769 | Glycine soja 3848 | CAG|GTGTGATCTC...TGTTCCTTATTT/CTGTTCCTTATT...TACAG|AGA | 1 | 1 | 45.004 |
| 84003945 | GT-AG | 0 | 8.377635171863851e-05 | 117 | rna-XM_028324457.1 15550477 | 7 | 56531716 | 56531832 | Glycine soja 3848 | GCA|GTATGAAACA...TGAGCTTTGTTG/TTGTATATGAGC...TGCAG|GGG | 2 | 1 | 58.976 |
| 84003946 | GC-AG | 0 | 1.000000099473604e-05 | 107 | rna-XM_028324457.1 15550477 | 8 | 56531378 | 56531484 | Glycine soja 3848 | AAG|GCAAGCATAT...TTTTTCTTTGTT/CTTTTACTTATG...CACAG|TTA | 2 | 1 | 63.668 |
| 84003947 | GT-AG | 0 | 1.000000099473604e-05 | 707 | rna-XM_028324457.1 15550477 | 9 | 56530546 | 56531252 | Glycine soja 3848 | AGC|GTAAGGAATT...CACTTTTTATCA/TTTAAATTCACT...GGCAG|GCT | 1 | 1 | 66.206 |
| 84003948 | GT-AG | 0 | 0.0001272142603887 | 442 | rna-XM_028324457.1 15550477 | 10 | 56529700 | 56530141 | Glycine soja 3848 | CTG|GTAATGTTTT...TTATCTTTGATG/TTATCTTTGATG...TGCAG|AAA | 0 | 1 | 74.411 |
| 84012260 | GT-AG | 0 | 1.000000099473604e-05 | 1567 | rna-XM_028324457.1 15550477 | 1 | 56535093 | 56536659 | Glycine soja 3848 | AAG|GTAAGGCTGT...TTTCTTTTAACT/TTTCTTTTAACT...TTCAG|CTG | 0 | 9.829 |
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]);