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 = 13851077
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 73762955 | GT-AG | 0 | 0.0010642346343966 | 86 | rna-XM_012979420.1 13851077 | 1 | 4810706 | 4810791 | Erythranthe guttata 4155 | GAG|GTATATTCAT...TTTGTTTTATGT/GTTTGTTTTATG...TGCAG|GTT | 0 | 1 | 7.344 | 
| 73762956 | GT-AG | 0 | 1.1210412156308424e-05 | 135 | rna-XM_012979420.1 13851077 | 2 | 4810847 | 4810981 | Erythranthe guttata 4155 | TCC|GTAAGTACTA...GTTGGATTAATG/GTGTGATTTACA...TGCAG|AGG | 1 | 1 | 8.776 | 
| 73762957 | GT-AG | 0 | 1.000000099473604e-05 | 90 | rna-XM_012979420.1 13851077 | 3 | 4811380 | 4811469 | Erythranthe guttata 4155 | ACC|GTCAGTCTCT...GTGTTTTTATAA/TGTGTTTTTATA...TCCAG|GTG | 0 | 1 | 19.141 | 
| 73762958 | GT-AG | 0 | 0.0014621433566459 | 113 | rna-XM_012979420.1 13851077 | 4 | 4811709 | 4811821 | Erythranthe guttata 4155 | ACT|GTAAGCATCC...ATATTCTCAACA/TATATTCTCAAC...CACAG|GTC | 2 | 1 | 25.365 | 
| 73762959 | GT-AG | 0 | 3.502834260612845e-05 | 90 | rna-XM_012979420.1 13851077 | 5 | 4812348 | 4812437 | Erythranthe guttata 4155 | CAG|GTTCTTTTCC...CTGTTTTTGAAT/CTGTTTTTGAAT...TGCAG|GGT | 0 | 1 | 39.062 | 
| 73762960 | GT-AG | 0 | 0.0003488864881433 | 112 | rna-XM_012979420.1 13851077 | 6 | 4812712 | 4812823 | Erythranthe guttata 4155 | AAG|GTTTATTTCA...GTAATATTAACG/CCATTTATGATT...AACAG|GTA | 1 | 1 | 46.198 | 
| 73762961 | GT-AG | 0 | 4.299334637093961e-05 | 81 | rna-XM_012979420.1 13851077 | 7 | 4813711 | 4813791 | Erythranthe guttata 4155 | AAG|GTAGACTCAT...AAATCGTTACTC/TCGTTACTCATG...TATAG|GTG | 0 | 1 | 69.297 | 
| 73762962 | GT-AG | 0 | 1.000000099473604e-05 | 92 | rna-XM_012979420.1 13851077 | 8 | 4814059 | 4814150 | Erythranthe guttata 4155 | CGT|GTAAGTACGC...TAATTTGTATTC/CAATAACTAATT...TGCAG|GTA | 0 | 1 | 76.25 | 
| 73762963 | GT-AG | 0 | 0.0006213179631383 | 73 | rna-XM_012979420.1 13851077 | 9 | 4814415 | 4814487 | Erythranthe guttata 4155 | AAG|GTATGTATGT...AGTGTTTTACTT/AAGTGTTTTACT...TTCAG|ACG | 0 | 1 | 83.125 | 
| 73762964 | GT-AG | 0 | 0.0009154486121311 | 96 | rna-XM_012979420.1 13851077 | 10 | 4814782 | 4814877 | Erythranthe guttata 4155 | CAG|GTATATTCTT...AAAAGTTTAAAA/TCGAAACTGATA...TGCAG|GGG | 0 | 1 | 90.781 | 
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]);