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 = 33469707
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 187538455 | GT-AG | 0 | 0.0001991011207374 | 246 | rna-XM_021460619.1 33469707 | 1 | 56701786 | 56702031 | Sorghum bicolor 4558 | CAG|GTTTTCTTAT...TGGTGATTGATG/TGGTGATTGATG...TGTAG|GAA | 0 | 1 | 2.202 | 
| 187538456 | GT-AG | 0 | 1.000000099473604e-05 | 670 | rna-XM_021460619.1 33469707 | 2 | 56702110 | 56702779 | Sorghum bicolor 4558 | GAG|GTGAGCATTG...ATTGTTTTATAT/TATTGTTTTATA...TGTAG|GAC | 0 | 1 | 3.886 | 
| 187538457 | GT-AG | 0 | 1.000000099473604e-05 | 1633 | rna-XM_021460619.1 33469707 | 3 | 56703872 | 56705504 | Sorghum bicolor 4558 | GAT|GTAAGTAACT...TGTTTTTTACAT/TTGTTTTTTACA...CCCAG|GTT | 0 | 1 | 27.461 | 
| 187538458 | GT-AG | 0 | 0.0001056878862639 | 681 | rna-XM_021460619.1 33469707 | 4 | 56705591 | 56706271 | Sorghum bicolor 4558 | TAC|GTAAGTTACA...TTAGTGTTAACT/ATATATTTCACA...ACTAG|TTA | 2 | 1 | 29.318 | 
| 187538459 | GT-AG | 0 | 1.000000099473604e-05 | 101 | rna-XM_021460619.1 33469707 | 5 | 56707066 | 56707166 | Sorghum bicolor 4558 | GAG|GTTTGGCTAA...TTACTTTTATAT/TTTATATTCATA...AACAG|GCC | 1 | 1 | 46.459 | 
| 187538460 | GT-AG | 0 | 0.0001313591790898 | 122 | rna-XM_021460619.1 33469707 | 6 | 56707593 | 56707714 | Sorghum bicolor 4558 | CTG|GTAAGCTCTT...CTTCCCCTGATG/GCTTTCTTTATG...ATCAG|GAT | 1 | 1 | 55.656 | 
| 187538461 | GT-AG | 0 | 0.0009202421057011 | 74 | rna-XM_021460619.1 33469707 | 7 | 56708292 | 56708365 | Sorghum bicolor 4558 | GCA|GTATGACCCT...AGAGTTTTAACA/CTTCCTTTTACT...TTCAG|GGG | 2 | 1 | 68.113 | 
| 187538462 | GT-AG | 0 | 0.0303299946683578 | 81 | rna-XM_021460619.1 33469707 | 8 | 56708597 | 56708677 | Sorghum bicolor 4558 | AAG|GTATCACTTT...TGAGTTTCAATC/ATGAGTTTCAAT...AACAG|TTA | 2 | 1 | 73.1 | 
| 187538463 | GT-AG | 0 | 1.000000099473604e-05 | 85 | rna-XM_021460619.1 33469707 | 9 | 56708803 | 56708887 | Sorghum bicolor 4558 | AAC|GTGAGTTTAT...CTCCTTTTAATG/CTCCTTTTAATG...TACAG|GTT | 1 | 1 | 75.799 | 
| 187538464 | GT-AG | 0 | 1.000000099473604e-05 | 117 | rna-XM_021460619.1 33469707 | 10 | 56709326 | 56709442 | Sorghum bicolor 4558 | AAG|GTGGTGGCAT...AATCCTATATTA/ATTCTGTTCACA...TTCAG|GTA | 1 | 1 | 85.255 | 
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]);