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 = 32656420
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 182390250 | GT-AG | 0 | 2.2722251680670367e-05 | 463 | rna-gnl|WGS:VXBA|SERLUN_R04432_mrna 32656420 | 1 | 7249 | 7711 | Serilophus lunatus 239386 | GAT|GTAAGTGTTG...TTCTCCCTATTC/AAAATAGTCACT...CTCAG|GAA | 2 | 1 | 8.112 | 
| 182390251 | GT-AG | 0 | 5.446513471266347e-05 | 689 | rna-gnl|WGS:VXBA|SERLUN_R04432_mrna 32656420 | 2 | 6473 | 7161 | Serilophus lunatus 239386 | AAG|GTATTGATAA...CTTTGCTTACTG/CCTTTGCTTACT...CTCAG|AGC | 2 | 1 | 15.1 | 
| 182390252 | GT-AG | 0 | 8.760430804724057e-05 | 120 | rna-gnl|WGS:VXBA|SERLUN_R04432_mrna 32656420 | 3 | 6229 | 6348 | Serilophus lunatus 239386 | GAG|GTAACATAAT...CAGGTTTTATTT/TCAGGTTTTATT...TGCAG|TTT | 0 | 1 | 25.06 | 
| 182390253 | GT-AG | 0 | 1.000000099473604e-05 | 729 | rna-gnl|WGS:VXBA|SERLUN_R04432_mrna 32656420 | 4 | 5327 | 6055 | Serilophus lunatus 239386 | TGG|GTAAGATGAT...TTTCCTTTGGCC/GTTTTCATCACT...TGTAG|GTA | 2 | 1 | 38.956 | 
| 182390254 | GT-AG | 0 | 0.0009037033659493 | 822 | rna-gnl|WGS:VXBA|SERLUN_R04432_mrna 32656420 | 5 | 4402 | 5223 | Serilophus lunatus 239386 | AAG|GTAACATTTG...GATATCTTCACA/GATATCTTCACA...TTCAG|TTG | 0 | 1 | 47.229 | 
| 182390255 | GT-AG | 0 | 1.000000099473604e-05 | 1217 | rna-gnl|WGS:VXBA|SERLUN_R04432_mrna 32656420 | 6 | 3095 | 4311 | Serilophus lunatus 239386 | AAG|GTACAGCAAA...ATGTTTTTAATT/ATGTTTTTAATT...TTCAG|CTT | 0 | 1 | 54.458 | 
| 182390256 | GT-AG | 0 | 0.0086314459828274 | 1033 | rna-gnl|WGS:VXBA|SERLUN_R04432_mrna 32656420 | 7 | 1956 | 2988 | Serilophus lunatus 239386 | CAA|GTTTCAATTA...TAATTTATAACC/GTGAGATTAATT...CCCAG|AGG | 1 | 1 | 62.972 | 
| 182390257 | GT-AG | 0 | 1.000000099473604e-05 | 791 | rna-gnl|WGS:VXBA|SERLUN_R04432_mrna 32656420 | 8 | 1058 | 1848 | Serilophus lunatus 239386 | CCG|GTTAGTAAAT...AAGTCATTATTT/CATTATTTCATA...ACTAG|GAT | 0 | 1 | 71.566 | 
| 182390258 | GT-AG | 0 | 1.000000099473604e-05 | 290 | rna-gnl|WGS:VXBA|SERLUN_R04432_mrna 32656420 | 9 | 623 | 912 | Serilophus lunatus 239386 | CAG|GTAAGAAGGC...GATATTTTACAT/ATGTATTTCACA...CTTAG|AAT | 1 | 1 | 83.213 | 
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]);