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 = 24215998
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 132129913 | GT-AG | 0 | 0.0001649151803745 | 582 | rna-XM_031641518.1 24215998 | 1 | 38671472 | 38672053 | Nymphaea colorata 210225 | CAG|GTATATAATT...GCACCATTAGCT/CATTAGCTAATA...CGCAG|GAT | 0 | 1 | 11.028 | 
| 132129914 | GT-AG | 0 | 1.000000099473604e-05 | 110 | rna-XM_031641518.1 24215998 | 2 | 38673406 | 38673515 | Nymphaea colorata 210225 | GAG|GTCAGAACTG...TTAGTTTTAATA/TTAGTTTTAATA...TATAG|GTC | 2 | 1 | 48.677 | 
| 132129915 | GT-AG | 0 | 1.000000099473604e-05 | 126 | rna-XM_031641518.1 24215998 | 3 | 38673627 | 38673752 | Nymphaea colorata 210225 | CAG|GTTAGTGAAA...TTGTCCTTACTC/CTTGTCCTTACT...AGCAG|TGT | 2 | 1 | 51.768 | 
| 132129916 | GT-AG | 0 | 9.906542474763875e-05 | 85 | rna-XM_031641518.1 24215998 | 4 | 38674030 | 38674114 | Nymphaea colorata 210225 | GGG|GTCTGCAACT...TTTTCTGTAATT/AGTTTATTTATT...TTTAG|GTT | 0 | 1 | 59.482 | 
| 132129917 | GT-AG | 0 | 0.1486316360629914 | 88 | rna-XM_031641518.1 24215998 | 5 | 38674204 | 38674291 | Nymphaea colorata 210225 | TGG|GTATACTTAC...AATTTTTTGTCA/TCTTTTCTCACA...TCCAG|CTT | 2 | 1 | 61.96 | 
| 132129918 | GT-AG | 0 | 0.0002913688138427 | 295 | rna-XM_031641518.1 24215998 | 6 | 38674401 | 38674695 | Nymphaea colorata 210225 | AAG|GTATGTAATC...TTATTGTTAACT/TTATTGTTAACT...GTCAG|GCG | 0 | 1 | 64.996 | 
| 132129919 | GT-AG | 0 | 1.000000099473604e-05 | 81 | rna-XM_031641518.1 24215998 | 7 | 38674906 | 38674986 | Nymphaea colorata 210225 | CTT|GTGAGTAAAT...TATACCATGACA/ATGCATCTAATC...TTCAG|GTC | 0 | 1 | 70.844 | 
| 132129920 | GT-AG | 0 | 1.000000099473604e-05 | 190 | rna-XM_031641518.1 24215998 | 8 | 38675117 | 38675306 | Nymphaea colorata 210225 | CAG|GTTATCCTAT...TTTTCCTTTTAT/CCTTTTATGATC...GGCAG|TAA | 1 | 1 | 74.464 | 
| 132129921 | GT-AG | 0 | 0.000582569251427 | 83 | rna-XM_031641518.1 24215998 | 9 | 38675402 | 38675484 | Nymphaea colorata 210225 | ATG|GTACATCCGT...GTTCCTTTAATG/TTGTTACTGATA...TGCAG|ATA | 0 | 1 | 77.109 | 
| 132129922 | GT-AG | 0 | 1.000000099473604e-05 | 166 | rna-XM_031641518.1 24215998 | 10 | 38675677 | 38675842 | Nymphaea colorata 210225 | CAG|GTAAGTTCAG...GAGATCTTGATT/TTTTTGTTAATT...TGCAG|TTC | 0 | 1 | 82.456 | 
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]);