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)

11 rows where transcript_id = 25024167

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
137658662 GT-AG 0 2.845343150225769e-05 309 rna-gnl|WGS:SJOL|mRNA110 25024167 2 39909 40217 Opisthorchis felineus 147828 AAG|GTTGGTTTCA...CTCTCCTTGACG/TGTTTTCTGACG...CTCAG|CTC 0 1 7.157
137658663 GT-AG 0 1.000000099473604e-05 55 rna-gnl|WGS:SJOL|mRNA110 25024167 3 39709 39763 Opisthorchis felineus 147828 TCG|GTTGGTGAAA...GTGCTTTTAACT/GTGCTTTTAACT...AACAG|GGT 1 1 14.466
137658664 GT-AG 0 1.000000099473604e-05 41 rna-gnl|WGS:SJOL|mRNA110 25024167 4 39561 39601 Opisthorchis felineus 147828 AAG|GTAAGTGAGA...GTTAAATTGACC/GTTAAATTGACC...TGCAG|TTA 0 1 19.859
137658665 GT-AG 0 0.0001065708518513 48 rna-gnl|WGS:SJOL|mRNA110 25024167 5 39309 39356 Opisthorchis felineus 147828 AAG|GTATTTCGTC...GTTTTCCAAACT/TGGATAGTCACT...TCCAG|GAT 0 1 30.141
137658666 GT-AG 0 0.0004617229063241 1850 rna-gnl|WGS:SJOL|mRNA110 25024167 6 37339 39188 Opisthorchis felineus 147828 AAG|GTATGTGTTA...TTCCCCATACTT/TAAAAATTCACA...TCAAG|TTT 0 1 36.19
137658667 GT-AG 0 1.000000099473604e-05 547 rna-gnl|WGS:SJOL|mRNA110 25024167 7 36646 37192 Opisthorchis felineus 147828 CAG|GTAAGTGATT...GTGCCCGTGTCT/TACTATTTCACC...TTCAG|CCT 2 1 43.548
137658668 GT-AG 0 1.000000099473604e-05 5702 rna-gnl|WGS:SJOL|mRNA110 25024167 8 30868 36569 Opisthorchis felineus 147828 AAG|GTAAGTATCC...CCATTATTGACC/CCATTATTGACC...TCCAG|TTG 0 1 47.379
137658669 GT-AG 0 1.1553355852323316e-05 786 rna-gnl|WGS:SJOL|mRNA110 25024167 9 29872 30657 Opisthorchis felineus 147828 GAG|GTAGGTCCTT...TCCTTCTTACCT/TTCCTTCTTACC...GACAG|CAG 0 1 57.964
137658670 GT-AG 0 1.000000099473604e-05 1599 rna-gnl|WGS:SJOL|mRNA110 25024167 10 27845 29443 Opisthorchis felineus 147828 TTG|GTGAGTTTAG...TCTTCCCTGACA/TCTTCCCTGACA...CCTAG|CCT 2 1 79.536
137658671 GT-AG 0 5.686792769891539e-05 347 rna-gnl|WGS:SJOL|mRNA110 25024167 11 27132 27478 Opisthorchis felineus 147828 GCA|GTAAGTATCT...TGGGGCTTATCC/CTGGGGCTTATC...TTCAG|AAT 2 1 97.984
137658681 GC-AG 0 0.0078559863874197 15209 rna-gnl|WGS:SJOL|mRNA110 25024167 1 40338 55546 Opisthorchis felineus 147828 TCT|GCACGTCGTG...TCATTCTTATCA/TTCATTCTTATC...CCTAG|CCA   0 3.075

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 30.005ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)