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 = 16261768
This data as json, CSV (advanced)
Suggested facets: score, 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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 86765587 | GT-AG | 0 | 1.000000099473604e-05 | 294 | Gomus.A01G185300.1.v1.1 16261768 | 2 | 110472280 | 110472573 | Gossypium mustelinum 34275 | TAC|GTAAGGCAAA...TTTGCCTTTTCC/CCTTCTATTACT...TGCAG|GAG | 1 | 1 | 20.973 | 
| 86765588 | GT-AG | 0 | 1.000000099473604e-05 | 176 | Gomus.A01G185300.1.v1.1 16261768 | 3 | 110472003 | 110472178 | Gossypium mustelinum 34275 | ATG|GTCAGTTTAT...CTGTTTTTACTG/TTTTTACTGATA...TTTAG|ATT | 0 | 1 | 23.226 | 
| 86765589 | GT-AG | 0 | 1.000000099473604e-05 | 142 | Gomus.A01G185300.1.v1.1 16261768 | 4 | 110471673 | 110471814 | Gossypium mustelinum 34275 | AAG|GTTAAATGAA...TTACCCTTGAAT/ATGATTTTGATT...TGTAG|GAT | 2 | 1 | 27.421 | 
| 86765590 | GT-AG | 0 | 0.0001531297783857 | 73 | Gomus.A01G185300.1.v1.1 16261768 | 5 | 110471494 | 110471566 | Gossypium mustelinum 34275 | GAG|GTAGATTTCT...TTTAGTTTAACC/TTTAGTTTAACC...TGCAG|AAA | 0 | 1 | 29.786 | 
| 86765591 | GT-AG | 0 | 1.000000099473604e-05 | 402 | Gomus.A01G185300.1.v1.1 16261768 | 6 | 110470831 | 110471232 | Gossypium mustelinum 34275 | GAG|GTGAGCAGAA...TATACGTTAGTA/ATATTTCTGATA...TTCAG|ATA | 0 | 1 | 35.609 | 
| 86765592 | GT-AG | 0 | 0.0001454746743696 | 180 | Gomus.A01G185300.1.v1.1 16261768 | 7 | 110470462 | 110470641 | Gossypium mustelinum 34275 | AAG|GTAAGCTTTT...TTTTTTTTGTTA/AAAGAATTTATA...TAAAG|GTG | 0 | 1 | 39.826 | 
| 86765593 | GT-AG | 0 | 1.000000099473604e-05 | 486 | Gomus.A01G185300.1.v1.1 16261768 | 8 | 110467678 | 110468163 | Gossypium mustelinum 34275 | GAG|GTACTGACTG...TTTTTTTTTTCT/GAATGTCTGATT...TACAG|GAG | 0 | 1 | 91.098 | 
| 86765594 | GT-AG | 0 | 0.0004038532629265 | 326 | Gomus.A01G185300.1.v1.1 16261768 | 9 | 110467142 | 110467467 | Gossypium mustelinum 34275 | GAG|GTATGCAGCT...CTGAGTTTAATT/CTGAGTTTAATT...TACAG|GGA | 0 | 1 | 95.783 | 
| 86775502 | GT-AG | 0 | 0.0002193873699575 | 475 | Gomus.A01G185300.1.v1.1 16261768 | 1 | 110473650 | 110474124 | Gossypium mustelinum 34275 | CCT|GTAAGCCACC...GTTGCTTGAACT/CTTGAACTGATA...CACAG|CAT | 0 | 6.225 | 
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]);