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 = 12758604
This data as json, CSV (advanced)
Suggested facets: score, length, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 67904919 | GT-AG | 0 | 0.0005550635756643 | 110 | rna-XM_022911123.1 12758604 | 1 | 1713305 | 1713414 | Durio zibethinus 66656 | TTG|GTACATATTT...TTATTCTTCTTT/ACAAATTTTATT...TACAG|GAA | 1 | 1 | 22.606 |
| 67904920 | GT-AG | 0 | 0.0002706141268566 | 113 | rna-XM_022911123.1 12758604 | 2 | 1713575 | 1713687 | Durio zibethinus 66656 | CAT|GTAAAGTTTC...TTTTTTTTATCT/ATTTTTTTTATC...ATCAG|GGT | 2 | 1 | 28.366 |
| 67904921 | GT-AG | 0 | 1.000000099473604e-05 | 116 | rna-XM_022911123.1 12758604 | 3 | 1713737 | 1713852 | Durio zibethinus 66656 | GAG|GTAGGAATCC...ATATTTTTATTT/TATATTTTTATT...TGTAG|ATT | 0 | 1 | 30.13 |
| 67904922 | GT-AG | 0 | 1.7820438458654928e-05 | 92 | rna-XM_022911123.1 12758604 | 4 | 1713967 | 1714058 | Durio zibethinus 66656 | ATG|GTAAATAAGA...CTGTCTTTATTT/TATTTCCTAATG...AACAG|ATT | 0 | 1 | 34.233 |
| 67904923 | GT-AG | 0 | 1.000000099473604e-05 | 147 | rna-XM_022911123.1 12758604 | 5 | 1714485 | 1714631 | Durio zibethinus 66656 | AAG|GTAATTAATA...GTGCTTTTAATC/TTTAATCTAATG...TTCAG|GTT | 0 | 1 | 49.568 |
| 67904924 | GT-AG | 0 | 0.0024500701043761 | 105 | rna-XM_022911123.1 12758604 | 6 | 1715019 | 1715123 | Durio zibethinus 66656 | ACG|GTAAGCTTTT...ATGTCGTTGACA/ATGTCGTTGACA...TGCAG|ACA | 0 | 1 | 63.499 |
| 67904925 | GT-AG | 0 | 5.228937471592495e-05 | 115 | rna-XM_022911123.1 12758604 | 7 | 1715220 | 1715334 | Durio zibethinus 66656 | AAG|GTATAAAAGC...ATTTCTTTGAAA/TTTTCTTTCAAA...GGAAG|GTT | 0 | 1 | 66.955 |
| 67904926 | GT-AG | 0 | 0.0003262359841013 | 91 | rna-XM_022911123.1 12758604 | 8 | 1715451 | 1715541 | Durio zibethinus 66656 | GTG|GTATGTAGAT...GTTATTTTATTT/TTTTATTTAACC...TGCAG|GCA | 2 | 1 | 71.13 |
| 67904927 | GT-AG | 0 | 1.000000099473604e-05 | 92 | rna-XM_022911123.1 12758604 | 9 | 1715645 | 1715736 | Durio zibethinus 66656 | GAG|GTTGTTTAAT...AGTGCCTTACCA/AAGTGCCTTACC...AACAG|GTC | 0 | 1 | 74.838 |
| 67904928 | GT-AG | 0 | 1.000000099473604e-05 | 141 | rna-XM_022911123.1 12758604 | 10 | 1715799 | 1715939 | Durio zibethinus 66656 | TAG|GTAAGATTTC...ATTGTATTAATT/ATTGTATTAATT...TACAG|CTT | 2 | 1 | 77.07 |
| 67904929 | GT-AG | 0 | 1.000000099473604e-05 | 88 | rna-XM_022911123.1 12758604 | 11 | 1716467 | 1716554 | Durio zibethinus 66656 | TTG|GTCAGTTTCA...ATTTACTTACCA/CATTTACTTACC...TGCAG|GAG | 1 | 1 | 96.04 |
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]);