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 = 13851141
This data as json, CSV (advanced)
Suggested facets: 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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 73763627 | GT-AG | 0 | 0.0012923619563982 | 96 | rna-XM_012975316.1 13851141 | 2 | 2711137 | 2711232 | Erythranthe guttata 4155 | AAA|GTATGTGTTG...GAGATATTAATT/GAGATATTAATT...TTCAG|GCA | 0 | 1 | 14.053 | 
| 73763628 | GT-AG | 0 | 0.0001030733777917 | 146 | rna-XM_012975316.1 13851141 | 3 | 2711269 | 2711414 | Erythranthe guttata 4155 | GAA|GTACGTCATC...TGATTCGTATCA/AGTAATTTGATT...ATCAG|GTA | 0 | 1 | 15.357 | 
| 73763629 | GT-AG | 0 | 7.073008907513759e-05 | 139 | rna-XM_012975316.1 13851141 | 4 | 2711451 | 2711589 | Erythranthe guttata 4155 | CAA|GTAGGTGATC...TTTTTCTTAAAA/ATTTTTCTTAAA...AATAG|ACA | 0 | 1 | 16.661 | 
| 73763630 | GT-AG | 0 | 1.4329662417396856 | 484 | rna-XM_012975316.1 13851141 | 5 | 2712242 | 2712725 | Erythranthe guttata 4155 | CGG|GTATGCTTTT...AATGCCTTATCC/AATTTTTTAATG...TACAG|ATA | 1 | 1 | 40.275 | 
| 73763631 | GT-AG | 0 | 0.0002690339453369 | 90 | rna-XM_012975316.1 13851141 | 6 | 2713874 | 2713963 | Erythranthe guttata 4155 | CAG|GTATTACTTT...TTTTTTTTATAA/TTTTTTTTTATA...ATTAG|GTG | 0 | 1 | 81.854 | 
| 73763632 | GT-AG | 0 | 2.9955262828346632e-05 | 273 | rna-XM_012975316.1 13851141 | 7 | 2714230 | 2714502 | Erythranthe guttata 4155 | CAG|GTAAGTTCAC...GATTTCTTAATG/AATGTCCTTATT...GCCAG|ATG | 2 | 1 | 91.489 | 
| 73763633 | GT-AG | 0 | 0.015559997762248 | 83 | rna-XM_012975316.1 13851141 | 8 | 2714570 | 2714652 | Erythranthe guttata 4155 | CAC|GTATGCAATT...TTTTTCTGATTA/TTTTTTCTGATT...TTCAG|CTC | 0 | 1 | 93.915 | 
| 73763634 | GT-AG | 0 | 1.000000099473604e-05 | 125 | rna-XM_012975316.1 13851141 | 9 | 2714704 | 2714828 | Erythranthe guttata 4155 | TGG|GTAAGTCTGT...TATTTTTTTGCT/TTTTTGCTGAGA...TTCAG|GAT | 0 | 1 | 95.762 | 
| 73763635 | GT-AG | 0 | 5.101908384118588e-05 | 91 | rna-XM_012975316.1 13851141 | 10 | 2714923 | 2715013 | Erythranthe guttata 4155 | CTA|GTAAGCGTAA...TGCTTCTTAAGT/AACCATCTGATT...CGTAG|GAT | 1 | 1 | 99.167 | 
| 73767399 | GT-AG | 0 | 0.0023657706996939 | 1440 | rna-XM_012975316.1 13851141 | 1 | 2709474 | 2710913 | Erythranthe guttata 4155 | TTG|GTATGCCCTT...CTACCATTATTC/ATTTTGTTTATT...GGAAG|GGT | 0 | 7.099 | 
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]);