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 = 38490401
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 213115800 | GT-AG | 0 | 0.0005699429338624 | 484 | rna-XM_008645309.3 38490401 | 1 | 22698543 | 22699026 | Zea mays 4577 | AAG|GTCACCCTTC...TACATCTTCACA/AATCTTCTCACT...TGCAG|AAA | 2 | 1 | 3.464 |
| 213115801 | GT-AG | 0 | 1.000000099473604e-05 | 278 | rna-XM_008645309.3 38490401 | 2 | 22696770 | 22697047 | Zea mays 4577 | CAG|GTTGGTTATG...TTTCCCCTACCC/CTTTTGTTCATA...TATAG|GTT | 0 | 1 | 27.216 |
| 213115802 | GT-AG | 0 | 0.0135839541219403 | 168 | rna-XM_008645309.3 38490401 | 3 | 22695240 | 22695407 | Zea mays 4577 | AAG|GTATATATCA...CTTTTCTTAATG/CTTTTCTTAATG...TCTAG|GTA | 0 | 1 | 48.856 |
| 213115803 | GC-AG | 0 | 1.000000099473604e-05 | 2050 | rna-XM_008645309.3 38490401 | 4 | 22692891 | 22694940 | Zea mays 4577 | AAG|GCAAGTATGG...TGCCCATTAATT/GTTTGGTTTATC...TGCAG|ACT | 2 | 1 | 53.607 |
| 213115804 | GT-AG | 0 | 1.000000099473604e-05 | 1456 | rna-XM_008645309.3 38490401 | 5 | 22689789 | 22691244 | Zea mays 4577 | CAG|GTCAGCAGCG...TGATCTTTAACT/TGATCTTTAACT...TGCAG|GAA | 1 | 1 | 79.759 |
| 213115805 | GT-AG | 0 | 1.000000099473604e-05 | 88 | rna-XM_008645309.3 38490401 | 6 | 22689298 | 22689385 | Zea mays 4577 | ACG|GTAGAGATTT...TTTCCCTTTTTT/GTTTGGTTCATA...TCTAG|TGA | 2 | 1 | 86.161 |
| 213115806 | GT-AG | 0 | 1.000000099473604e-05 | 349 | rna-XM_008645309.3 38490401 | 7 | 22688786 | 22689134 | Zea mays 4577 | GAG|GTTATTGATG...TTTCTCCTATTG/CAAAAACTAATG...TGCAG|ATG | 0 | 1 | 88.751 |
| 213115807 | GT-AG | 0 | 0.0064082669452943 | 79 | rna-XM_008645309.3 38490401 | 8 | 22688603 | 22688681 | Zea mays 4577 | ACG|GTATGTTGTC...TTTGTCTCAGCA/TTTTGTCTCAGC...GGCAG|AGA | 2 | 1 | 90.404 |
| 213115808 | GT-AG | 0 | 5.881667399721448e-05 | 113 | rna-XM_008645309.3 38490401 | 9 | 22688398 | 22688510 | Zea mays 4577 | GTG|GTTTGTATCC...TTCCCCTTTGTA/TATTAGATAACT...TGCAG|AGG | 1 | 1 | 91.865 |
| 213136327 | GT-AG | 0 | 0.0055058608701621 | 78 | rna-XM_008645309.3 38490401 | 10 | 22688080 | 22688157 | Zea mays 4577 | AAG|GTTTCCGATC...GTTTTCTCTACT/AACTAATTGATT...CACAG|ATT | 0 | 95.678 | |
| 213136328 | GT-AG | 0 | 1.000000099473604e-05 | 78 | rna-XM_008645309.3 38490401 | 11 | 22687891 | 22687968 | Zea mays 4577 | AGG|GTAATGTAGA...GAAGCCTTATCA/TTGAATATAATT...TCCAG|GTT | 0 | 97.442 |
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]);