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 = 30057314
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 168293181 | GT-AG | 0 | 1.000000099473604e-05 | 383 | rna-XM_025163439.1 30057314 | 1 | 1378272 | 1378654 | Python bivittatus 176946 | CAG|GTGAGTAGAG...TCTGCTCTAGCC/GCTTTTTAAAGG...TCTAG|CAT | 0 | 1 | 5.181 |
| 168293182 | GT-AG | 0 | 1.000000099473604e-05 | 3448 | rna-XM_025163439.1 30057314 | 2 | 1374660 | 1378107 | Python bivittatus 176946 | CAG|GTAAGTTGGT...TTTGCCTTTGTC/GCCTTTGTCACC...TGCAG|ATT | 2 | 1 | 13.762 |
| 168293183 | GT-AG | 0 | 1.000000099473604e-05 | 615 | rna-XM_025163439.1 30057314 | 3 | 1373950 | 1374564 | Python bivittatus 176946 | ACA|GTGAGTTATG...TTTGTTTTGACT/TTTGTTTTGACT...TTCAG|GCA | 1 | 1 | 18.734 |
| 168293184 | GT-AG | 0 | 1.000000099473604e-05 | 1301 | rna-XM_025163439.1 30057314 | 4 | 1372575 | 1373875 | Python bivittatus 176946 | GAG|GTTGGTAGGT...ATAGCTTTAATC/TCATGCTTCATC...CTCAG|ATC | 0 | 1 | 22.606 |
| 168293185 | GT-AG | 0 | 0.0918331839766793 | 662 | rna-XM_025163439.1 30057314 | 5 | 1371731 | 1372392 | Python bivittatus 176946 | GCT|GTATGTTCTT...AGTATTTTACTG/ATTTTACTGAAT...TTCAG|GCT | 2 | 1 | 32.13 |
| 168293186 | GT-AG | 0 | 0.0011903889067818 | 402 | rna-XM_025163439.1 30057314 | 6 | 1371205 | 1371606 | Python bivittatus 176946 | TCG|GTACCAACTC...CTCACTTTCACT/ATTCTTCTCACT...TGCAG|GTT | 0 | 1 | 38.619 |
| 168293187 | GT-AG | 0 | 1.000000099473604e-05 | 76 | rna-XM_025163439.1 30057314 | 7 | 1370981 | 1371056 | Python bivittatus 176946 | CAG|GTAAGTGAGT...AATTCCTTTCTC/CTTGTGCTAATG...TGCAG|GTG | 1 | 1 | 46.363 |
| 168293188 | GT-AG | 0 | 0.0004002341602305 | 1283 | rna-XM_025163439.1 30057314 | 8 | 1369444 | 1370726 | Python bivittatus 176946 | CAG|GTACCAGTAT...TATCTTTTACCC/TTATCTTTTACC...TTCAG|GCG | 0 | 1 | 59.655 |
| 168293189 | GT-AG | 0 | 0.0001863799599255 | 580 | rna-XM_025163439.1 30057314 | 9 | 1368758 | 1369337 | Python bivittatus 176946 | ATG|GTAATCAATG...CTTTCTTTGATC/CTTTCTTTGATC...TTCAG|GAG | 1 | 1 | 65.201 |
| 168293190 | GT-AG | 0 | 1.000000099473604e-05 | 1465 | rna-XM_025163439.1 30057314 | 10 | 1367125 | 1368589 | Python bivittatus 176946 | CAG|GTACTGGGTG...ACATTGTTAAAC/GTTAAACTAACA...TACAG|GCT | 1 | 1 | 73.993 |
| 168293191 | GT-AG | 0 | 1.000000099473604e-05 | 665 | rna-XM_025163439.1 30057314 | 11 | 1366364 | 1367028 | Python bivittatus 176946 | CAG|GTGAGGAGGC...GATATTTTGAAT/CTTATATTTATA...TCAAG|GTA | 1 | 1 | 79.016 |
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]);