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 = 6439355
This data as json, CSV (advanced)
Suggested facets: length, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 33380315 | GT-AG | 0 | 0.0004141201932773 | 1492 | rna-XM_030633987.1 6439355 | 1 | 19201625 | 19203116 | Cannabis sativa 3483 | GAC|GTAAGCTCAT...CGAATCTTATAT/ACGAATCTTATA...TGCAG|CTT | 0 | 1 | 9.531 |
| 33380316 | GT-AG | 0 | 1.000000099473604e-05 | 108 | rna-XM_030633987.1 6439355 | 2 | 19201462 | 19201569 | Cannabis sativa 3483 | TTG|GTAAGGTTTA...TTTGCGTTATCC/CATGTACTAATT...TATAG|AGG | 1 | 1 | 10.835 |
| 33380317 | GT-AG | 0 | 1.8885490263320365e-05 | 138 | rna-XM_030633987.1 6439355 | 3 | 19201148 | 19201285 | Cannabis sativa 3483 | AAG|GTAATTTTAT...AATTTCTTGTCT/GATTTGTTGATT...TACAG|GTT | 0 | 1 | 15.007 |
| 33380318 | GT-AG | 0 | 2.661813392125916e-05 | 167 | rna-XM_030633987.1 6439355 | 4 | 19200780 | 19200946 | Cannabis sativa 3483 | CAG|GTTTGTTTTT...TGTTGCTGAAAT/ATGTTGCTGAAA...TTTAG|GCT | 0 | 1 | 19.772 |
| 33380319 | GT-AG | 0 | 0.0003545300175706 | 102 | rna-XM_030633987.1 6439355 | 5 | 19200418 | 19200519 | Cannabis sativa 3483 | CCT|GTAAGCCTCT...CTGTCTCTGATG/TCTCTTCTGATT...TGTAG|CGG | 2 | 1 | 25.936 |
| 33380320 | GT-AG | 0 | 0.0019028828977581 | 103 | rna-XM_030633987.1 6439355 | 6 | 19200004 | 19200106 | Cannabis sativa 3483 | TAG|GTATGTTGTT...AATTTCTTGTTG/TTGTTGCACATG...TGCAG|GGG | 1 | 1 | 33.31 |
| 33380321 | GT-AG | 0 | 0.0001407474175425 | 119 | rna-XM_030633987.1 6439355 | 7 | 19199664 | 19199782 | Cannabis sativa 3483 | CAG|GTATAATCTG...TATGTTTTGAGG/GTTCTGTTTATT...ATCAG|GTT | 0 | 1 | 38.549 |
| 33380322 | GT-AG | 0 | 0.0008970583782872 | 173 | rna-XM_030633987.1 6439355 | 8 | 19199150 | 19199322 | Cannabis sativa 3483 | GAG|GTATGATTCA...ATTTCCCTAGCT/AAGTTCATCATA...TGCAG|GAT | 2 | 1 | 46.633 |
| 33380323 | GT-AG | 0 | 7.491285684846324e-05 | 102 | rna-XM_030633987.1 6439355 | 9 | 19198266 | 19198367 | Cannabis sativa 3483 | CAG|GTGTGCGTCT...TGCACTTTAGCT/TCTGTTTTGATC...GACAG|CGA | 1 | 1 | 65.173 |
| 33380324 | GT-AG | 0 | 0.0001040958229179 | 276 | rna-XM_030633987.1 6439355 | 10 | 19197748 | 19198023 | Cannabis sativa 3483 | CAG|GTTTATCACG...TCTTTTTTAACA/TCTTTTTTAACA...TGCAG|AAA | 0 | 1 | 70.91 |
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]);