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 = 13851059
This data as json, CSV (advanced)
Suggested facets: score, length, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 73762691 | GT-AG | 0 | 1.000000099473604e-05 | 516 | rna-XM_012977883.1 13851059 | 1 | 4122585 | 4123100 | Erythranthe guttata 4155 | ATT|GTAAGAATCT...TATTCCTCAATG/ATATTCCTCAAT...TGAAG|GAG | 0 | 1 | 3.163 | 
| 73762692 | GT-AG | 0 | 0.004416441530893 | 99 | rna-XM_012977883.1 13851059 | 2 | 4122413 | 4122511 | Erythranthe guttata 4155 | TAG|GTAACTTTGA...GGTTTCATAATG/TATGGTTTCATA...AATAG|GGG | 1 | 1 | 4.702 | 
| 73762693 | GT-AG | 0 | 2.1159531863046723e-05 | 70 | rna-XM_012977883.1 13851059 | 3 | 4122209 | 4122278 | Erythranthe guttata 4155 | GAG|GTAGATACCT...CTATTTTTGACT/CTATTTTTGACT...ATTAG|GAT | 0 | 1 | 7.527 | 
| 73762694 | GT-AG | 0 | 4.964168418147427e-05 | 103 | rna-XM_012977883.1 13851059 | 4 | 4121743 | 4121845 | Erythranthe guttata 4155 | CAG|GTATGATGAT...CTTTTCTAGATA/TTTAAACTTATT...AGCAG|ATT | 0 | 1 | 15.18 | 
| 73762695 | GT-AG | 0 | 0.0028813521883407 | 244 | rna-XM_012977883.1 13851059 | 5 | 4120243 | 4120486 | Erythranthe guttata 4155 | GCT|GTAAGTTCTG...AGTTCTTTAATA/ACTTTTGTTATC...CATAG|GCC | 2 | 1 | 41.661 | 
| 73762696 | GT-AG | 0 | 1.6185443940220975e-05 | 138 | rna-XM_012977883.1 13851059 | 6 | 4119668 | 4119805 | Erythranthe guttata 4155 | AAG|GTACGTCATT...TTCTCTTTGTCG/TTCAAATTGATA...CACAG|GTA | 1 | 1 | 50.875 | 
| 73762697 | GT-AG | 0 | 1.000000099473604e-05 | 102 | rna-XM_012977883.1 13851059 | 7 | 4117911 | 4118012 | Erythranthe guttata 4155 | AAG|GTTGTTACGC...TGTTCCATAATA/ATTTTTTTCAAA...TGCAG|AAT | 0 | 1 | 85.769 | 
| 73762698 | GT-AG | 0 | 9.40284472010131e-05 | 342 | rna-XM_012977883.1 13851059 | 8 | 4117411 | 4117752 | Erythranthe guttata 4155 | CGA|GTAAGTTTAT...CGTTTGTTGACA/CGTTTGTTGACA...TGCAG|GTT | 2 | 1 | 89.1 | 
| 73762699 | GT-AG | 0 | 0.0006714350727271 | 117 | rna-XM_012977883.1 13851059 | 9 | 4117133 | 4117249 | Erythranthe guttata 4155 | CTG|GTAAATTTTA...GCGGTCTTAACT/TCTTAACTAATT...TTTAG|GTG | 1 | 1 | 92.494 | 
| 73762700 | GT-AG | 0 | 1.000000099473604e-05 | 99 | rna-XM_012977883.1 13851059 | 10 | 4116873 | 4116971 | Erythranthe guttata 4155 | TTT|GTAAGTATAA...GCAATTATAATT/TTATAATTGACA...TGTAG|GCA | 0 | 1 | 95.889 | 
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]);