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 = 25413763
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 140208628 | GT-AG | 0 | 1.000000099473604e-05 | 90 | rna-XM_015842537.2 25413763 | 1 | 8168687 | 8168776 | Oryza brachyantha 4533 | TCC|GTAAGTAGAA...CTGACCGTGTCG/CCGAGGCTGACC...GCCAG|AGG | 1 | 1 | 10.151 | 
| 140208629 | GT-AG | 0 | 1.000000099473604e-05 | 100 | rna-XM_015842537.2 25413763 | 2 | 8168411 | 8168510 | Oryza brachyantha 4533 | AAG|GTCAGCCACC...TTGGTTTTGGTT/TGGGTGCTCACG...TGCAG|GTT | 0 | 1 | 14.72 | 
| 140208630 | GT-AG | 0 | 0.0022281245736615 | 100 | rna-XM_015842537.2 25413763 | 3 | 8168089 | 8168188 | Oryza brachyantha 4533 | ACG|GTATGCATCA...TCCCCACTAATG/TCCCCACTAATG...CGCAG|GTT | 0 | 1 | 20.483 | 
| 140208631 | GT-AG | 0 | 0.0005760103744388 | 780 | rna-XM_015842537.2 25413763 | 4 | 8167070 | 8167849 | Oryza brachyantha 4533 | TCT|GTAAGTTTCT...GTTGCTGTATTC/CAGAGGCTGACT...AACAG|AGC | 2 | 1 | 26.687 | 
| 140208632 | GT-AG | 0 | 1.000000099473604e-05 | 98 | rna-XM_015842537.2 25413763 | 5 | 8166446 | 8166543 | Oryza brachyantha 4533 | CAG|GTCAGAAGTC...TGATCCTTTTCC/AACATATTGATC...CACAG|GGT | 0 | 1 | 40.343 | 
| 140208633 | GT-AG | 0 | 1.000000099473604e-05 | 106 | rna-XM_015842537.2 25413763 | 6 | 8166066 | 8166171 | Oryza brachyantha 4533 | AGG|GTAAAATTCT...GCATATTTAATT/GCATATTTAATT...TTCAG|GTC | 1 | 1 | 47.456 | 
| 140208634 | GT-AG | 0 | 1.000000099473604e-05 | 77 | rna-XM_015842537.2 25413763 | 7 | 8165144 | 8165220 | Oryza brachyantha 4533 | AAG|GTTTGTACTC...GATACCTTTATA/TGATTGCTGATT...TGCAG|ATG | 0 | 1 | 69.393 | 
| 140208635 | GT-AG | 0 | 1.000000099473604e-05 | 126 | rna-XM_015842537.2 25413763 | 8 | 8164751 | 8164876 | Oryza brachyantha 4533 | AGG|GTAAGTATTA...ATAGTTTTGAAA/ATAGTTTTGAAA...TGCAG|GTT | 0 | 1 | 76.324 | 
| 140208636 | GT-AG | 0 | 1.000000099473604e-05 | 88 | rna-XM_015842537.2 25413763 | 9 | 8164399 | 8164486 | Oryza brachyantha 4533 | AAG|GTAAGAAATC...ACTATCTGAATC/TTTATGCTCACT...ATCAG|ACT | 0 | 1 | 83.178 | 
| 140208637 | GT-AG | 0 | 0.000143419031426 | 87 | rna-XM_015842537.2 25413763 | 10 | 8164018 | 8164104 | Oryza brachyantha 4533 | CAG|GTTACTATCT...TTTTTCTTAAAG/TTTTTTCTTAAA...TGCAG|GGG | 0 | 1 | 90.81 | 
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]);