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 = 27150991
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 151208855 | GT-AG | 0 | 3.3226631117610324e-05 | 2255 | rna-XM_020724169.1 27150991 | 2 | 228722 | 230976 | Phalaenopsis equestris 78828 | CAT|GTGAGCTTCT...TCTTCATTGATA/TTAATCTTCATT...CCCAG|CCG | 0 | 1 | 26.012 | 
| 151208856 | GT-AG | 0 | 0.0003619990805534 | 79 | rna-XM_020724169.1 27150991 | 3 | 231076 | 231154 | Phalaenopsis equestris 78828 | CAG|GTATTACTTT...ATTTTCTTGGCC/TTTGTTGTCACA...GCCAG|CGA | 0 | 1 | 35.549 | 
| 151208857 | GT-AG | 0 | 2.519618147255301e-05 | 302 | rna-XM_020724169.1 27150991 | 4 | 231266 | 231567 | Phalaenopsis equestris 78828 | CAG|GTAAATTTCA...ACTTGTTTGATA/ACTTGTTTGATA...TGCAG|GTG | 0 | 1 | 46.243 | 
| 151208858 | GT-AG | 0 | 6.008763013885587e-05 | 444 | rna-XM_020724169.1 27150991 | 5 | 231631 | 232074 | Phalaenopsis equestris 78828 | AAA|GTAAGCATTT...GTTTTCTAAGAT/AATTATTTTACG...TTTAG|GTC | 0 | 1 | 52.312 | 
| 151208859 | GT-AG | 0 | 8.449870132637605e-05 | 186 | rna-XM_020724169.1 27150991 | 6 | 232169 | 232354 | Phalaenopsis equestris 78828 | ACG|GTACGTAATT...GCATTTTTAAAT/GCATTTTTAAAT...TGCAG|TAA | 1 | 1 | 61.368 | 
| 151208860 | GT-AG | 0 | 1.000000099473604e-05 | 1023 | rna-XM_020724169.1 27150991 | 7 | 232360 | 233382 | Phalaenopsis equestris 78828 | ACA|GTTAAATATT...GGTAATTTGACG/GTTGGACTGATT...TTCAG|CTT | 0 | 1 | 61.85 | 
| 151208861 | GT-AG | 0 | 0.1802345286356174 | 3410 | rna-XM_020724169.1 27150991 | 8 | 233485 | 236894 | Phalaenopsis equestris 78828 | TTG|GTATGCTTTT...TTTCTGTTATTC/CTGTTATTCATG...TGCAG|GCA | 0 | 1 | 71.676 | 
| 151208862 | GT-AG | 0 | 1.000000099473604e-05 | 981 | rna-XM_020724169.1 27150991 | 9 | 237009 | 237989 | Phalaenopsis equestris 78828 | CAG|GTTTATGCTT...TTTTTCTTATGT/TTTTTTCTTATG...GACAG|GGA | 0 | 1 | 82.659 | 
| 151208863 | GT-AG | 0 | 5.4870912767834814e-05 | 2381 | rna-XM_020724169.1 27150991 | 10 | 238065 | 240445 | Phalaenopsis equestris 78828 | AAG|GTTAGCTTCC...ACCTTTTTAACT/ACCTTTTTAACT...ACCAG|ATT | 0 | 1 | 89.884 | 
| 151208944 | GT-AG | 0 | 0.0012025918899118 | 4633 | rna-XM_020724169.1 27150991 | 1 | 223907 | 228539 | Phalaenopsis equestris 78828 | TAG|GTACTCATTT...TTTTTTTTCATT/TTTTTTTTCATT...TTTAG|GTT | 0 | 13.006 | 
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]);