home / WtMTA

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)

13 rows where transcript_id = 15198751

✎ View and edit SQL

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
82238728 GT-AG 0 3.0135117956188235e-05 686 rna-XM_005415661.3 15198751 2 14356424 14357109 Geospiza fortis 48883 AAT|GTAAGTGTTC...CACTTTTTGAAT/GAATTGTTCATT...TGCAG|AAA 0 1 5.179
82238729 GT-AG 0 1.000000099473604e-05 764 rna-XM_005415661.3 15198751 3 14355325 14356088 Geospiza fortis 48883 TAA|GTAAGTAAGT...AATTCCTTGCTT/AGATTTGTAATT...TTTAG|ATC 2 1 15.694
82238730 GT-AG 0 1.6557805814687245e-05 2301 rna-XM_005415661.3 15198751 4 14352831 14355131 Geospiza fortis 48883 CAG|GTAGGCAAAA...TTTTTTTTAAAT/TTTTTTTTAAAT...TTCAG|GCA 0 1 21.751
82238731 GT-AG 0 1.000000099473604e-05 1314 rna-XM_005415661.3 15198751 5 14351275 14352588 Geospiza fortis 48883 TAG|GTAGGAAAAT...TTCTCTCTAATA/TTCTCTCTAATA...TTTAG|AAC 2 1 29.347
82238732 GT-AG 0 1.000000099473604e-05 456 rna-XM_005415661.3 15198751 6 14350712 14351167 Geospiza fortis 48883 TAG|GTTATTTTAT...TTTTCATTTACA/TTTTCATTTACA...TCTAG|GTG 1 1 32.706
82238733 GT-AG 0 1.000000099473604e-05 524 rna-XM_005415661.3 15198751 7 14350015 14350538 Geospiza fortis 48883 CAG|GTAAGTGCTC...ATGTTTTTTAAT/ATGTTTTTTAAT...TACAG|GTT 0 1 38.136
82238734 GT-AG 0 1.000000099473604e-05 494 rna-XM_005415661.3 15198751 8 14349328 14349821 Geospiza fortis 48883 ACG|GTAAATGAAA...CGTCCTTTATTT/CTAATACTAAAC...CAAAG|GCA 1 1 44.193
82238735 GT-AG 0 2.130399627598372e-05 1309 rna-XM_005415661.3 15198751 9 14347900 14349208 Geospiza fortis 48883 AAG|GTAGTATTTT...CTTTCCTTCGTT/TATGGGCTGATA...TCTAG|TCT 0 1 47.928
82238736 GT-AG 0 0.0039001114792456 1106 rna-XM_005415661.3 15198751 10 14345956 14347061 Geospiza fortis 48883 TTG|GTATGTCTTT...CATGTTTTATTC/TCATGTTTTATT...CATAG|GTT 1 1 74.231
82238737 GT-AG 0 1.000000099473604e-05 578 rna-XM_005415661.3 15198751 11 14345214 14345791 Geospiza fortis 48883 TAT|GTAAGAACAC...TTATTATTATTT/TATTTTTTCATG...TACAG|GAA 0 1 79.379
82238738 GT-AG 0 0.0042400017424729 1225 rna-XM_005415661.3 15198751 12 14343863 14345087 Geospiza fortis 48883 CCA|GTATGTACCT...TGTTTCTTACAG/CTGTTTCTTACA...TACAG|GTG 0 1 83.333
82238739 GT-AG 0 1.000000099473604e-05 1029 rna-XM_005415661.3 15198751 13 14342702 14343730 Geospiza fortis 48883 AAG|GTAAAAGTCT...AAACCTTTGATA/AAACCTTTGATA...TGTAG|GTT 0 1 87.476
82240382 GT-AG 0 1.000000099473604e-05 2145 rna-XM_005415661.3 15198751 1 14357231 14359375 Geospiza fortis 48883 AGG|GTAATGGTTT...ATTTTCTTATTT/GATTTTCTTATT...ATTAG|AAT   0 3.578

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 25.941ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)