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 = 25832592
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 143078703 | GT-AG | 0 | 2.006126487706055e-05 | 77 | rna-XM_025946474.1 25832592 | 2 | 57579146 | 57579222 | Panicum hallii 206008 | GGT|GTAAGTAATG...AATTCTTTTGTT/TCTCCACTGAAA...TGCAG|AAT | 0 | 1 | 64.467 | 
| 143078704 | GT-AG | 0 | 6.144275448867428e-05 | 81 | rna-XM_025946474.1 25832592 | 3 | 57579334 | 57579414 | Panicum hallii 206008 | CAG|GTGTGTTTGC...TTTACCTTATGT/TTTTACCTTATG...TGCAG|ACT | 0 | 1 | 67.083 | 
| 143078705 | GT-AG | 0 | 0.0567493351018225 | 187 | rna-XM_025946474.1 25832592 | 4 | 57579568 | 57579754 | Panicum hallii 206008 | TTG|GTATGTTTCA...TGAGCTTTATCT/CTTTATCTGATT...TGCAG|ATT | 0 | 1 | 70.688 | 
| 143078706 | GT-AG | 0 | 1.2337822742449433e-05 | 77 | rna-XM_025946474.1 25832592 | 5 | 57579919 | 57579995 | Panicum hallii 206008 | CAG|GTACTGTTGT...GTTCATTTATTT/AGTTGGTTCATT...TGCAG|GAC | 2 | 1 | 74.552 | 
| 143078707 | GT-AG | 0 | 4.059568397431413e-05 | 109 | rna-XM_025946474.1 25832592 | 6 | 57580144 | 57580252 | Panicum hallii 206008 | AAG|GTTTGGTCCG...CGTATCTTGACT/CGTATCTTGACT...ATCAG|ATC | 0 | 1 | 78.04 | 
| 143078708 | GT-AG | 0 | 1.000000099473604e-05 | 105 | rna-XM_025946474.1 25832592 | 7 | 57580376 | 57580480 | Panicum hallii 206008 | AAG|GTAAAACTGC...CTATTTTTATAT/ACTATTTTTATA...TGTAG|ATT | 0 | 1 | 80.938 | 
| 143078709 | GT-AG | 0 | 1.000000099473604e-05 | 541 | rna-XM_025946474.1 25832592 | 8 | 57580569 | 57581109 | Panicum hallii 206008 | TTG|GTAATGTCCA...TTCGTATTAATA/AGTGATTTAATT...TCCAG|GGG | 1 | 1 | 83.011 | 
| 143090363 | GT-AG | 0 | 0.0001812374323909 | 651 | rna-XM_025946474.1 25832592 | 1 | 57575996 | 57576646 | Panicum hallii 206008 | CAG|GTGCTCTACC...GTTTTCTTATCT/TGTTTTCTTATC...AACAG|GAA | 0 | 8.412 | |
| 143090364 | GT-AG | 0 | 1.000000099473604e-05 | 79 | rna-XM_025946474.1 25832592 | 9 | 57581488 | 57581566 | Panicum hallii 206008 | AAT|GTGAGTTGGC...TCTTCCTTATAT/TTCTTCCTTATA...TTCAG|GAA | 0 | 91.918 | 
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]);