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 = 25413757
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 140208566 | GT-AG | 0 | 0.0577846493743296 | 128 | rna-XM_040529936.1 25413757 | 1 | 6736384 | 6736511 | Oryza brachyantha 4533 | TCG|GTAACCCCGC...TGTTTTTTAAAA/GGATTTCTGATT...GGAAG|ACG | 0 | 1 | 1.215 | 
| 140208567 | GT-AG | 0 | 1.000000099473604e-05 | 673 | rna-XM_040529936.1 25413757 | 2 | 6735621 | 6736293 | Oryza brachyantha 4533 | GAG|GTGAGGCGGC...TTTTCCCTAATA/TTTGAACTTATC...TGCAG|GTC | 0 | 1 | 3.493 | 
| 140208568 | GT-AG | 0 | 0.0238292323802508 | 186 | rna-XM_040529936.1 25413757 | 3 | 6735382 | 6735567 | Oryza brachyantha 4533 | TTG|GTACGTTTCT...GTTCCCTTGACA/AACATATTTATG...ACCAG|GTA | 2 | 1 | 4.834 | 
| 140208569 | GT-AG | 0 | 0.1745045200166446 | 400 | rna-XM_040529936.1 25413757 | 4 | 6734906 | 6735305 | Oryza brachyantha 4533 | CAG|GTATCTTGCT...CACACTTTCACT/TTCAGTTTCACA...TGCAG|GAT | 0 | 1 | 6.758 | 
| 140208570 | GT-AG | 0 | 5.524955753400637e-05 | 82 | rna-XM_040529936.1 25413757 | 5 | 6734762 | 6734843 | Oryza brachyantha 4533 | TCA|GTAAAGTTCC...TGAAATTTGATT/TGAAATTTGATT...GACAG|GTT | 2 | 1 | 8.327 | 
| 140208571 | GT-AG | 0 | 0.000232894872114 | 89 | rna-XM_040529936.1 25413757 | 6 | 6734594 | 6734682 | Oryza brachyantha 4533 | AAG|GTACATGCTT...ATTTCTTTAATT/ATTTCTTTAATT...TCTAG|TTG | 0 | 1 | 10.326 | 
| 140208572 | GT-AG | 0 | 1.000000099473604e-05 | 98 | rna-XM_040529936.1 25413757 | 7 | 6734436 | 6734533 | Oryza brachyantha 4533 | GAT|GTGAGTTTCC...CAACTTTTAAAT/CTACATTTGATT...TGCAG|GTG | 0 | 1 | 11.845 | 
| 140208573 | GT-AG | 0 | 1.000000099473604e-05 | 915 | rna-XM_040529936.1 25413757 | 8 | 6731934 | 6732848 | Oryza brachyantha 4533 | CAG|GTCAGAAACT...ACAACATTAACA/TTGTGTCTCATT...TGCAG|GTT | 0 | 1 | 52.012 | 
| 140208574 | GT-AG | 0 | 1.000000099473604e-05 | 93 | rna-XM_040529936.1 25413757 | 9 | 6731525 | 6731617 | Oryza brachyantha 4533 | CAC|GTGAGCAGCA...CCAACCATGAAT/TATTCTGTCATT...AACAG|AAG | 1 | 1 | 60.01 | 
| 140208575 | GT-AG | 0 | 0.0005298102286336 | 211 | rna-XM_040529936.1 25413757 | 10 | 6730853 | 6731063 | Oryza brachyantha 4533 | CAG|GTATGATCTA...CAAATCTTGACC/TGATTATTTACG...TCCAG|GCT | 0 | 1 | 71.678 | 
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]);