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 = 38490436
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 213116404 | GT-AG | 0 | 1.000000099473604e-05 | 4069 | rna-XM_020546382.1 38490436 | 1 | 62374853 | 62378921 | Zea mays 4577 | ATG|GTGAGTGCGT...CATTTTGTGAAT/GAGAAATTAATC...TGCAG|ATT | 0 | 1 | 2.472 | 
| 213116405 | GT-AG | 0 | 2.859711889072942e-05 | 2634 | rna-XM_020546382.1 38490436 | 2 | 62372142 | 62374775 | Zea mays 4577 | GAT|GTAAGTGCTA...TGACTCTTAGTT/TTATTTGTGACT...CACAG|TGC | 2 | 1 | 3.982 | 
| 213116406 | GT-AG | 0 | 1.1572784615418386e-05 | 1872 | rna-XM_020546382.1 38490436 | 3 | 62368194 | 62370065 | Zea mays 4577 | AGT|GTAAGATCTA...TGGTGCTTAAAT/CTTAAATTTACA...TGCAG|GCA | 2 | 1 | 44.704 | 
| 213116407 | GT-AG | 0 | 1.000000099473604e-05 | 634 | rna-XM_020546382.1 38490436 | 4 | 62367115 | 62367748 | Zea mays 4577 | GAG|GTTAGACTCT...GATGCCTTTTTT/AATTTTCTGATG...ATAAG|GCA | 0 | 1 | 53.433 | 
| 213116408 | GT-AG | 0 | 1.000000099473604e-05 | 76 | rna-XM_020546382.1 38490436 | 5 | 62366930 | 62367005 | Zea mays 4577 | AAG|GTAAGTGTAT...ATATTTATGATT/TTTTGGTTGATT...TGCAG|GTG | 1 | 1 | 55.571 | 
| 213116409 | GT-AG | 0 | 1.000000099473604e-05 | 88 | rna-XM_020546382.1 38490436 | 6 | 62366729 | 62366816 | Zea mays 4577 | AAG|GTAAGTACGT...TTTTGCTTACCA/CTTTTGCTTACC...ATTAG|GTT | 0 | 1 | 57.787 | 
| 213116410 | GT-AG | 0 | 8.836885776169105e-05 | 883 | rna-XM_020546382.1 38490436 | 7 | 62365664 | 62366546 | Zea mays 4577 | GAG|GTATGGTGCT...TTTCTCCTACTT/ATTTGCCTCATG...AACAG|CAA | 2 | 1 | 61.357 | 
| 213116411 | GT-AG | 0 | 0.0034261863769703 | 83 | rna-XM_020546382.1 38490436 | 8 | 62365109 | 62365191 | Zea mays 4577 | TAT|GTATGTATAG...GTTTTTTTGTTT/GTGTTTCTAATA...TACAG|AAT | 0 | 1 | 70.616 | 
| 213116412 | GT-AG | 0 | 0.0039132625806587 | 172 | rna-XM_020546382.1 38490436 | 9 | 62364318 | 62364489 | Zea mays 4577 | CAG|GTACACTTCT...TTTGCTTTGTTG/TTGTTGTTGAGT...TGCAG|GAC | 1 | 1 | 82.758 | 
| 213116413 | GT-AG | 0 | 6.09996987536551e-05 | 660 | rna-XM_020546382.1 38490436 | 10 | 62363478 | 62364137 | Zea mays 4577 | GAG|GTATGTAACA...GTACCTTTCATA/GTACCTTTCATA...CGCAG|GAC | 1 | 1 | 86.289 | 
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]);