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 = 7346945
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 38393398 | GT-AG | 0 | 1.000000099473604e-05 | 32773 | Ceric.01G055800.1.v2.1 7346945 | 1 | 119898942 | 119931714 | Ceratopteris richardii 49495 | AAG|GTACTGAACA...TAAGCCTTATTC/ACTTTTCTAAAT...TACAG|TGG | 0 | 1 | 9.327 | 
| 38393399 | GT-AG | 0 | 1.000000099473604e-05 | 93 | Ceric.01G055800.1.v2.1 7346945 | 2 | 119898546 | 119898638 | Ceratopteris richardii 49495 | CAG|GTCATTTCTC...GCCTCCTCCATT/TAGTGATTCATT...CTCAG|GCT | 0 | 1 | 16.41 | 
| 38393400 | GT-AG | 0 | 0.0003310125509725 | 28640 | Ceric.01G055800.1.v2.1 7346945 | 3 | 119869795 | 119898434 | Ceratopteris richardii 49495 | AAA|GTAAGCTGCA...CATCGCTTGATG/CATCGCTTGATG...TACAG|ATG | 0 | 1 | 19.004 | 
| 38393401 | GT-AG | 0 | 1.000000099473604e-05 | 89 | Ceric.01G055800.1.v2.1 7346945 | 4 | 119869595 | 119869683 | Ceratopteris richardii 49495 | AAG|GTGATACTTT...TTTTTCTGAGTG/ATTTTTCTGAGT...CATAG|GAG | 0 | 1 | 21.599 | 
| 38393402 | GT-AG | 0 | 3.927308369893982e-05 | 76 | Ceric.01G055800.1.v2.1 7346945 | 5 | 119866876 | 119866951 | Ceratopteris richardii 49495 | GAG|GTAAACAGTT...GTTTTTGTAATT/GTTTTTGTAATT...AACAG|AGT | 0 | 1 | 83.38 | 
| 38393403 | GT-AG | 0 | 1.000000099473604e-05 | 74 | Ceric.01G055800.1.v2.1 7346945 | 6 | 119866640 | 119866713 | Ceratopteris richardii 49495 | GAG|GTGGATTGTA...TGAATCTTAATG/TTGAATCTTAAT...TACAG|GAA | 0 | 1 | 87.167 | 
| 38393404 | GT-AG | 0 | 0.0060525731191807 | 72 | Ceric.01G055800.1.v2.1 7346945 | 7 | 119866451 | 119866522 | Ceratopteris richardii 49495 | AAG|GTATGCGTAC...GTGTTTTTAATC/ATTTTTTTGATG...ATCAG|GGA | 0 | 1 | 89.902 | 
| 38393405 | GT-AG | 0 | 0.0013807449141936 | 10501 | Ceric.01G055800.1.v2.1 7346945 | 8 | 119855846 | 119866346 | Ceratopteris richardii 49495 | AAG|GTACTTCTCA...ATTTCCTTACAT/AATTTCCTTACA...GGCAG|ATA | 2 | 1 | 92.333 | 
| 38393406 | GT-AG | 0 | 1.000000099473604e-05 | 95 | Ceric.01G055800.1.v2.1 7346945 | 9 | 119855619 | 119855713 | Ceratopteris richardii 49495 | CAG|GTGAGTCATC...CAATTTTCAATT/TCAATTCTCATG...CACAG|CTG | 2 | 1 | 95.418 | 
| 38393407 | GT-AG | 0 | 0.0041400448630045 | 357 | Ceric.01G055800.1.v2.1 7346945 | 10 | 119855174 | 119855530 | Ceratopteris richardii 49495 | GAT|GTAAGTTTTT...TTTGTCTTATTA/TTTTGTCTTATT...CCCAG|ATA | 0 | 1 | 97.475 | 
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]);