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 = 18699317
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 99735234 | GT-AG | 0 | 0.0055952000996438 | 88 | rna-XM_035685473.1 18699317 | 1 | 6901911 | 6901998 | Juglans regia 51240 | CAG|GTTTTCTTGA...TCTTTTTTATTG/TTCTTTTTTATT...AATAG|GCT | 0 | 1 | 6.163 | 
| 99735235 | GT-AG | 0 | 1.000000099473604e-05 | 143 | rna-XM_035685473.1 18699317 | 2 | 6902060 | 6902202 | Juglans regia 51240 | GGG|GTAAGAAACA...TCATTTTTAAAC/CTTCTGTTCATT...AATAG|GTA | 1 | 1 | 7.345 | 
| 99735236 | GT-AG | 0 | 1.000000099473604e-05 | 841 | rna-XM_035685473.1 18699317 | 3 | 6903030 | 6903870 | Juglans regia 51240 | ACA|GTAATATGTA...AATTTCAGATCA/GAAAATTTCAGA...TGCAG|TCT | 0 | 1 | 23.372 | 
| 99735237 | GT-AG | 0 | 1.3804531883569595 | 453 | rna-XM_035685473.1 18699317 | 4 | 6906824 | 6907276 | Juglans regia 51240 | GTG|GTTTCCCATT...ACACCTTTAATA/ACTACACTTACA...AACAG|TTT | 1 | 1 | 80.601 | 
| 99735238 | GT-AG | 0 | 0.0007990757865729 | 258 | rna-XM_035685473.1 18699317 | 5 | 6907432 | 6907689 | Juglans regia 51240 | GAG|GTATAATATT...AATTTCTTATAC/AAATTATTTATT...TACAG|GGA | 0 | 1 | 83.605 | 
| 99735239 | GT-AG | 0 | 1.000000099473604e-05 | 67 | rna-XM_035685473.1 18699317 | 6 | 6907961 | 6908027 | Juglans regia 51240 | TAG|GTAATTCACT...TAAATCTTATTT/TTAAATCTTATT...GTCAG|ATG | 1 | 1 | 88.857 | 
| 99735240 | GT-AG | 0 | 1.000000099473604e-05 | 99 | rna-XM_035685473.1 18699317 | 7 | 6908125 | 6908223 | Juglans regia 51240 | AAG|GTAAAAATAT...CAATCTTTATTT/TCTTTTTTTATT...TGTAG|CTT | 2 | 1 | 90.736 | 
| 99735241 | GT-AG | 0 | 0.0326518916364423 | 83 | rna-XM_035685473.1 18699317 | 8 | 6908349 | 6908431 | Juglans regia 51240 | ATG|GTATTTTTAA...TTTCTTTTATAT/TTTTCTTTTATA...TGAAG|GAT | 1 | 1 | 93.159 | 
| 99735242 | GT-AG | 0 | 6.347247955858705e-05 | 590 | rna-XM_035685473.1 18699317 | 9 | 6908511 | 6909100 | Juglans regia 51240 | GTG|GTAATCGTCA...TAACTTTTATTG/CTTTTATTGATT...TATAG|TTG | 2 | 1 | 94.69 | 
| 99735243 | GT-AG | 0 | 0.5676116149401917 | 149 | rna-XM_035685473.1 18699317 | 10 | 6909222 | 6909370 | Juglans regia 51240 | GAT|GTATGTTTTC...TATTCTTTAAAT/TTTTTATTAATC...TGCAG|GAA | 0 | 1 | 97.035 | 
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]);