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)
 
9 rows where transcript_id = 12758631
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 67905145 | GT-AG | 0 | 3.819866512290907e-05 | 85 | rna-XM_022898546.1 12758631 | 1 | 925680 | 925764 | Durio zibethinus 66656 | CAG|GTATTGCTAA...TTTTTCTGATTG/TTTTTTCTGATT...TTTAG|ACC | 1 | 1 | 7.179 | 
| 67905146 | GT-AG | 0 | 0.005215977880342 | 90 | rna-XM_022898546.1 12758631 | 2 | 925516 | 925605 | Durio zibethinus 66656 | AGG|GTATGCCATT...AATTCATTAATT/TTATTTTTTATA...GTCAG|GGT | 0 | 1 | 10.629 | 
| 67905147 | GT-AG | 0 | 0.0001436337166124 | 80 | rna-XM_022898546.1 12758631 | 3 | 925317 | 925396 | Durio zibethinus 66656 | CTG|GTAAGCTGAC...TTTCCTTTGATA/TTTCCTTTGATA...TGCAG|GAG | 2 | 1 | 16.177 | 
| 67905148 | GT-AG | 0 | 1.000000099473604e-05 | 73 | rna-XM_022898546.1 12758631 | 4 | 925152 | 925224 | Durio zibethinus 66656 | AAG|GTTTGAGTAA...AGTTTCTAATTT/AAGTTTCTAATT...TGTAG|ATT | 1 | 1 | 20.466 | 
| 67905149 | GT-AG | 0 | 0.0006663722375727 | 121 | rna-XM_022898546.1 12758631 | 5 | 924371 | 924491 | Durio zibethinus 66656 | CAG|GTAATCTTTC...ATATGTTTGATT/ATATGTTTGATT...ACCAG|AAA | 1 | 1 | 51.235 | 
| 67905150 | GT-AG | 0 | 0.0021554508077388 | 92 | rna-XM_022898546.1 12758631 | 6 | 924030 | 924121 | Durio zibethinus 66656 | ATG|GTAATCTTCC...TATATTTTATTT/CTATATTTTATT...AACAG|GTC | 1 | 1 | 62.844 | 
| 67905151 | GT-AG | 0 | 5.614283076299916e-05 | 303 | rna-XM_022898546.1 12758631 | 7 | 923566 | 923868 | Durio zibethinus 66656 | CAG|GTAAACCCTT...TCCACTTTACCC/ACTTTTTCCACT...TGCAG|TTA | 0 | 1 | 70.35 | 
| 67905152 | GT-AG | 0 | 1.000000099473604e-05 | 104 | rna-XM_022898546.1 12758631 | 8 | 923234 | 923337 | Durio zibethinus 66656 | TGG|GTAAGAATTT...GTGTCCATTACA/CAAATTATCATC...CACAG|GCT | 0 | 1 | 80.979 | 
| 67905153 | GT-AG | 0 | 6.371823926178454e-05 | 351 | rna-XM_022898546.1 12758631 | 9 | 922733 | 923083 | Durio zibethinus 66656 | CAG|GTAGACATTC...TGTTTCTCATTG/ATGTTTCTCATT...TCCAG|GCA | 0 | 1 | 87.972 | 
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]);