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 = 20211392
This data as json, CSV (advanced)
Suggested facets: score, phase, in_cds
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 108233700 | GT-AG | 0 | 1.000000099473604e-05 | 1964 | rna-XM_019592361.1 20211392 | 2 | 18835650 | 18837613 | Lupinus angustifolius 3871 | GGG|GTGAGTTAGC...ATCTCTCTAACT/ATCTCTCTAACT...TCCAG|CAT | 0 | 1 | 7.39 | 
| 108233701 | GT-AG | 0 | 0.0095039357421668 | 119 | rna-XM_019592361.1 20211392 | 3 | 18837716 | 18837834 | Lupinus angustifolius 3871 | AAG|GTATGTTTAT...ATTTTTTTAAAT/ATTTTTTTAAAT...TGAAG|CGC | 0 | 1 | 8.796 | 
| 108233702 | GT-AG | 0 | 0.0002657938576742 | 1437 | rna-XM_019592361.1 20211392 | 4 | 18838621 | 18840057 | Lupinus angustifolius 3871 | GAG|GTACATGTTC...TTTGTTTTGAAT/TTGTGTTTAACT...TGCAG|AAG | 0 | 1 | 19.633 | 
| 108233703 | GT-AG | 0 | 0.0025811422858629 | 111 | rna-XM_019592361.1 20211392 | 5 | 18840166 | 18840276 | Lupinus angustifolius 3871 | CAG|GTAACCAGCT...TTTTCCTTGTAT/GCAAATATGATT...CACAG|GTT | 0 | 1 | 21.122 | 
| 108233704 | GT-AG | 0 | 1.000000099473604e-05 | 351 | rna-XM_019592361.1 20211392 | 6 | 18843052 | 18843402 | Lupinus angustifolius 3871 | AAG|GTGATGTACT...CTTCTCGTGATT/CGTGATTTAATT...CTCAG|GCC | 0 | 1 | 59.382 | 
| 108233705 | GT-AG | 0 | 1.000000099473604e-05 | 1999 | rna-XM_019592361.1 20211392 | 7 | 18843561 | 18845559 | Lupinus angustifolius 3871 | GAG|GTATGGAGCT...CTAAGCTTGATC/ATGCATCTAATC...TGTAG|GTG | 2 | 1 | 61.561 | 
| 108233706 | GT-AG | 0 | 1.871395732203353e-05 | 290 | rna-XM_019592361.1 20211392 | 8 | 18845675 | 18845964 | Lupinus angustifolius 3871 | GAG|GTAATTTACT...GTCTTCTGAGTT/TGTCTTCTGAGT...AACAG|AGT | 0 | 1 | 63.146 | 
| 108233707 | GT-AG | 0 | 0.0066488379173342 | 372 | rna-XM_019592361.1 20211392 | 9 | 18846048 | 18846419 | Lupinus angustifolius 3871 | ATA|GTATGATTTA...TTGGTATTATTC/TGAATACTAACA...AACAG|TGC | 2 | 1 | 64.291 | 
| 108233708 | GT-AG | 0 | 0.2870792662084322 | 97 | rna-XM_019592361.1 20211392 | 10 | 18847078 | 18847174 | Lupinus angustifolius 3871 | CCG|GTATGCTCTC...TATCCTTTATTT/TTATGATTCATA...TGCAG|TTT | 0 | 1 | 73.363 | 
| 108243558 | GT-AG | 0 | 1.000000099473604e-05 | 846 | rna-XM_019592361.1 20211392 | 1 | 18834554 | 18835399 | Lupinus angustifolius 3871 | AAG|GTTGGTGTGC...TTTTCATTATCT/AAAGTTTTGATT...TGTAG|GAC | 0 | 4.164 | 
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]);