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 = 27391005
This data as json, CSV (advanced)
Suggested facets: 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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 152560513 | GT-AG | 0 | 1.000000099473604e-05 | 171 | rna-XM_026810435.2 27391005 | 1 | 37625380 | 37625550 | Phoenix dactylifera 42345 | CAG|GTAAGTGGTC...TTTTTTTTAAAA/TTTTTTTTAAAA...AACAG|GTT | 0 | 1 | 4.974 | 
| 152560514 | GT-AG | 0 | 0.364357943052328 | 146 | rna-XM_026810435.2 27391005 | 2 | 37622474 | 37622619 | Phoenix dactylifera 42345 | CAG|GTACCCTCCA...AGTTCTCTAATT/TTTTTGCTCATG...ACCAG|GTC | 0 | 1 | 44.425 | 
| 152560515 | GT-AG | 0 | 0.3814243259796821 | 146 | rna-XM_026810435.2 27391005 | 3 | 37621134 | 37621279 | Phoenix dactylifera 42345 | CAG|GTACCCTCCA...TTCTCTTTTGCT/CTTTTGCTCATG...ACCAG|GTT | 0 | 1 | 61.492 | 
| 152560516 | GT-AG | 0 | 3.3808549807939348 | 140 | rna-XM_026810435.2 27391005 | 4 | 37620403 | 37620542 | Phoenix dactylifera 42345 | CAG|GTACCCTCTA...GTTCTCTTATTC/AGTTCTCTTATT...ACCAG|GTC | 0 | 1 | 69.94 | 
| 152560517 | GT-AG | 0 | 0.758942605192451 | 90 | rna-XM_026810435.2 27391005 | 5 | 37619840 | 37619929 | Phoenix dactylifera 42345 | TCG|GTAGCCATCT...ATTTTTTTATCT/TATTTTTTTATC...TGCAG|AGA | 2 | 1 | 76.701 | 
| 152569506 | GT-AG | 0 | 0.0001215233124092 | 3630 | rna-XM_026810435.2 27391005 | 6 | 37616112 | 37619741 | Phoenix dactylifera 42345 | TCG|GTATGGATCA...ATTTTTTTGTTT/AACAGCTTCATT...TCAAG|GTA | 0 | 78.102 | |
| 152569507 | GT-AG | 0 | 0.0004360361050241 | 1575 | rna-XM_026810435.2 27391005 | 7 | 37614482 | 37616056 | Phoenix dactylifera 42345 | CTG|GTAACGATTT...TGACTTTTGAAT/TGACTTTTGAAT...TGCAG|CTG | 0 | 78.888 | |
| 152569508 | GT-AG | 0 | 0.0121135806455293 | 3136 | rna-XM_026810435.2 27391005 | 8 | 37611280 | 37614415 | Phoenix dactylifera 42345 | TGG|GTATGCAATT...TTTTCCTTGGTA/TGTTTGCTGATA...GACAG|TTT | 0 | 79.831 | |
| 152569509 | GT-AG | 0 | 1.000000099473604e-05 | 210 | rna-XM_026810435.2 27391005 | 9 | 37610948 | 37611157 | Phoenix dactylifera 42345 | AAG|GTAATGTACA...TGCTTTTTATCT/ATGCTTTTTATC...TTCAG|GAA | 0 | 81.575 | |
| 152569510 | GT-AG | 0 | 1.000000099473604e-05 | 858 | rna-XM_026810435.2 27391005 | 10 | 37609961 | 37610818 | Phoenix dactylifera 42345 | AAG|GTATGAAAAT...GGTCTATTAAAA/TAATTGTTTACA...TACAG|ATC | 0 | 83.419 | 
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]);