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 = 17265306
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 92255231 | GT-AG | 0 | 1.000000099473604e-05 | 346 | rna-XM_021428773.1 17265306 | 1 | 1487499 | 1487844 | Herrania umbratica 108875 | ATC|GTAAGTGCAC...GATCATTTAACA/AACATTTTCACT...ATCAG|GTT | 0 | 1 | 46.211 | 
| 92255232 | GT-AG | 0 | 2.29225891632347e-05 | 78 | rna-XM_021428773.1 17265306 | 2 | 1488166 | 1488243 | Herrania umbratica 108875 | AAT|GTGTGTATAA...TTTCACTTAAAG/GCAATTTTCACT...TCTAG|GAA | 0 | 1 | 53.387 | 
| 92255233 | GT-AG | 0 | 3.049060562229194e-05 | 156 | rna-XM_021428773.1 17265306 | 3 | 1488331 | 1488486 | Herrania umbratica 108875 | TTG|GTAAGCTACT...CATATTTGAATT/ACATATTTGAAT...TGCAG|TTG | 0 | 1 | 55.332 | 
| 92255234 | GT-AG | 0 | 1.000000099473604e-05 | 90 | rna-XM_021428773.1 17265306 | 4 | 1489075 | 1489164 | Herrania umbratica 108875 | CGA|GTAAGAGTTT...TGTATTTTACCG/TTGTATTTTACC...AATAG|GTA | 0 | 1 | 68.478 | 
| 92255235 | GT-AG | 0 | 0.0001422269372281 | 108 | rna-XM_021428773.1 17265306 | 5 | 1489330 | 1489437 | Herrania umbratica 108875 | CAG|GTATTACTAC...TTTGTTTTGAAA/ATATTTTTCATT...ATTAG|AGG | 0 | 1 | 72.166 | 
| 92255236 | GT-AG | 0 | 1.000000099473604e-05 | 293 | rna-XM_021428773.1 17265306 | 6 | 1489733 | 1490025 | Herrania umbratica 108875 | CTG|GTTAGTTATC...TGGTTATTGATT/TATGTACTCATT...GGTAG|GGT | 1 | 1 | 78.761 | 
| 92255237 | GT-AG | 0 | 1.000000099473604e-05 | 91 | rna-XM_021428773.1 17265306 | 7 | 1490241 | 1490331 | Herrania umbratica 108875 | AAG|GTGTATACAT...ATGTCATCATCT/TTGCAACTAACC...TGCAG|GTT | 0 | 1 | 83.568 | 
| 92255238 | GT-AG | 0 | 0.0002866301803355 | 136 | rna-XM_021428773.1 17265306 | 8 | 1490638 | 1490773 | Herrania umbratica 108875 | GAG|GTAAGCTTTT...CCTTTTTTATTG/ACAATTCTCATC...TTAAG|GTT | 0 | 1 | 90.409 | 
| 92255239 | GT-AG | 0 | 1.000000099473604e-05 | 96 | rna-XM_021428773.1 17265306 | 9 | 1490838 | 1490933 | Herrania umbratica 108875 | TGG|GTAAGACATA...CTATTTGTAAAG/TTGGACCTAAAC...TGCAG|TTG | 1 | 1 | 91.84 | 
| 92255240 | GT-AG | 0 | 1.000000099473604e-05 | 117 | rna-XM_021428773.1 17265306 | 10 | 1491174 | 1491290 | Herrania umbratica 108875 | ATG|GTGAGTTACT...TTCTGCTTATGT/ATTCTGCTTATG...AACAG|GGA | 1 | 1 | 97.205 | 
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]);