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 = 25832589
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 | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 143078667 | GT-AG | 0 | 4.907327682096759e-05 | 2279 | rna-XM_025955218.1 25832589 | 1 | 29960874 | 29963152 | Panicum hallii 206008 | ACG|GTAATTCTTC...TGATTCTTATTG/CTGATTCTTATT...TATAG|GTG | 1 | 1 | 26.804 | 
| 143078668 | GT-AG | 0 | 0.0174329246882649 | 96 | rna-XM_025955218.1 25832589 | 2 | 29960525 | 29960620 | Panicum hallii 206008 | CTG|GTACTCTTCA...TATTCTATATTT/TCTATATTTATA...TGCAG|GGA | 2 | 1 | 34.382 | 
| 143078669 | GT-AG | 0 | 0.0071379820598823 | 1751 | rna-XM_025955218.1 25832589 | 3 | 29957966 | 29959716 | Panicum hallii 206008 | ACG|GTATACACGT...CGTATTTTACTA/ACGTATTTTACT...TTTAG|GTA | 0 | 1 | 58.58 | 
| 143078670 | GT-AG | 0 | 0.0001933995479495 | 95 | rna-XM_025955218.1 25832589 | 4 | 29957749 | 29957843 | Panicum hallii 206008 | ATG|GTAATCTGTT...AATTTCTTCTTT/TTTTCTCTGAAA...TTCAG|GGT | 2 | 1 | 62.234 | 
| 143078671 | GT-AG | 0 | 1.000000099473604e-05 | 3617 | rna-XM_025955218.1 25832589 | 5 | 29954047 | 29957663 | Panicum hallii 206008 | AAG|GTGCTCATGT...GTTTACTTGATA/ATGTATCTGATT...TTCAG|GGA | 0 | 1 | 64.78 | 
| 143078672 | GT-AG | 0 | 0.0032406488029013 | 145 | rna-XM_025955218.1 25832589 | 6 | 29953736 | 29953880 | Panicum hallii 206008 | CAG|GTATTATTCA...CAATTCTTATTG/GCAATTCTTATT...CACAG|TTT | 1 | 1 | 69.751 | 
| 143078673 | GT-AG | 0 | 0.1276765696484876 | 103 | rna-XM_025955218.1 25832589 | 7 | 29953595 | 29953697 | Panicum hallii 206008 | AAT|GTATGCTGTT...GGATCCATATTG/TATTGTGTGATT...GACAG|GGA | 0 | 1 | 70.889 | 
| 143078674 | GT-AG | 0 | 0.0001059186566665 | 177 | rna-XM_025955218.1 25832589 | 8 | 29953168 | 29953344 | Panicum hallii 206008 | CAG|GTATAATATA...AGGTTCTTCGCT/CTTCTTTTGAGG...TACAG|GGT | 1 | 1 | 78.377 | 
| 143078675 | GT-AG | 0 | 1.000000099473604e-05 | 70 | rna-XM_025955218.1 25832589 | 9 | 29952974 | 29953043 | Panicum hallii 206008 | AAT|GTAAGTTGAT...GTGCTGTTATAT/TGTCAATTAATT...TGTAG|GTA | 2 | 1 | 82.09 | 
| 143078676 | GT-AG | 0 | 1.000000099473604e-05 | 376 | rna-XM_025955218.1 25832589 | 10 | 29952267 | 29952642 | Panicum hallii 206008 | AAG|GTAGGTTACT...ATGAGCTTAATG/CATGAGCTTAAT...CGCAG|GTT | 0 | 1 | 92.004 | 
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]);