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 = 15495791
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, score, length, 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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 83762658 | GT-AG | 0 | 1.000000099473604e-05 | 115 | rna-XM_006572810.4 15495791 | 2 | 57147715 | 57147829 | Glycine max 3847 | GAT|GTGAGTATCT...ATTTCATTGACT/CTGTTTCTGATT...AATAG|GTA | 0 | 1 | 26.318 | 
| 83762659 | GT-AG | 0 | 0.0647882912678381 | 107 | rna-XM_006572810.4 15495791 | 3 | 57147522 | 57147628 | Glycine max 3847 | CAC|GTATGCCTAA...GTTCCTTTCTCT/ATGAATTTTACA...ATCAG|CTA | 2 | 1 | 28.035 | 
| 83762660 | GT-AG | 0 | 1.000000099473604e-05 | 181 | rna-XM_006572810.4 15495791 | 4 | 57147246 | 57147426 | Glycine max 3847 | TGG|GTAAGAGTGA...CTGACTTTTATG/TGTATGCTGACT...TTCAG|ATG | 1 | 1 | 29.932 | 
| 83762661 | GT-AG | 0 | 3.718542991829923e-05 | 154 | rna-XM_006572810.4 15495791 | 5 | 57146789 | 57146942 | Glycine max 3847 | AAG|GTATGGATTT...GTTTATTTATTC/TTTGTTCTTATG...AATAG|GTA | 1 | 1 | 35.982 | 
| 83762662 | GT-AG | 0 | 1.5423187618804883e-05 | 249 | rna-XM_006572810.4 15495791 | 6 | 57146042 | 57146290 | Glycine max 3847 | CAG|GTGTGATCTC...TGTTCCTTATTT/CTGTTCCTTATT...TACAG|AGA | 1 | 1 | 45.927 | 
| 83762663 | GT-AG | 0 | 8.377635171863851e-05 | 117 | rna-XM_006572810.4 15495791 | 7 | 57145237 | 57145353 | Glycine max 3847 | GCA|GTATGAAACA...TGAGCTTTGTTG/TTGTATATGAGC...TGCAG|GGG | 2 | 1 | 59.665 | 
| 83762664 | GC-AG | 0 | 1.000000099473604e-05 | 107 | rna-XM_006572810.4 15495791 | 8 | 57144899 | 57145005 | Glycine max 3847 | AAG|GCAAGCATAT...TTTTTCTTTGTT/CTTTTACTTATG...CACAG|TTA | 2 | 1 | 64.277 | 
| 83762665 | GT-AG | 0 | 1.000000099473604e-05 | 707 | rna-XM_006572810.4 15495791 | 9 | 57144067 | 57144773 | Glycine max 3847 | AGC|GTAAGGAATT...CACTTTTTATCA/TTTAAATTCACT...GGCAG|GCT | 1 | 1 | 66.773 | 
| 83762666 | GT-AG | 0 | 0.0001272142603887 | 442 | rna-XM_006572810.4 15495791 | 10 | 57143221 | 57143662 | Glycine max 3847 | CTG|GTAATGTTTT...TTATCTTTGATG/TTATCTTTGATG...TGCAG|AAA | 0 | 1 | 74.84 | 
| 83770948 | GT-AG | 0 | 1.000000099473604e-05 | 1561 | rna-XM_006572810.4 15495791 | 1 | 57148614 | 57150174 | Glycine max 3847 | AAG|GTAAGGCTGT...TTTCTTTTAACT/TTTCTTTTAACT...TTCAG|CTG | 0 | 11.342 | 
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]);