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 = 25024173

✎ 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
137658695 GT-AG 0 8.681933037188622e-05 34 rna-gnl|WGS:SJOL|mRNA119 25024173 2 21974 22007 Opisthorchis felineus 147828 GAG|GTACAGTGGT...CATTACTTAATT/CATTACTTAATT...CTCAG|ATA 0 1 19.459
137658696 GT-AG 0 1.000000099473604e-05 39 rna-gnl|WGS:SJOL|mRNA119 25024173 3 22092 22130 Opisthorchis felineus 147828 AAA|GTAAGGCCTA...GTTGGTATGATT/GTTGGTATGATT...TTTAG|ATT 0 1 22.134
137658697 GT-AG 0 3.1691257547356595e-05 1823 rna-gnl|WGS:SJOL|mRNA119 25024173 4 22468 24290 Opisthorchis felineus 147828 AAG|GTAAGCTTGT...GTGTTCTAATAT/CGTGTTCTAATA...TTCAG|GTA 1 1 32.866
137658698 GT-AG 0 1.000000099473604e-05 17799 rna-gnl|WGS:SJOL|mRNA119 25024173 5 24502 42300 Opisthorchis felineus 147828 ACG|GTGAGCCAAA...GGTACCATGAAT/CTCGTTCACATC...TCTAG|GAA 2 1 39.586
137658699 GT-AG 0 1.1643151999243257e-05 447 rna-gnl|WGS:SJOL|mRNA119 25024173 6 42542 42988 Opisthorchis felineus 147828 GAA|GTGAGCCTCT...TCTTTTTTGACC/TCTTTTTTGACC...CCTAG|GTT 0 1 47.261
137658700 GT-AG 0 0.0044885386599452 473 rna-gnl|WGS:SJOL|mRNA119 25024173 7 43186 43658 Opisthorchis felineus 147828 GAG|GTATATATTG...TCGTTATTAATA/TCGTTATTAATA...TACAG|CAA 2 1 53.535
137658701 GT-AG 0 1.000000099473604e-05 93 rna-gnl|WGS:SJOL|mRNA119 25024173 8 44068 44160 Opisthorchis felineus 147828 GAG|GTGAGCAGTT...CTTTTCTTTTCA/TTTCTTTTCAAC...CAAAG|GCT 0 1 66.561
137658702 GT-AG 0 1.000000099473604e-05 1978 rna-gnl|WGS:SJOL|mRNA119 25024173 9 44308 46285 Opisthorchis felineus 147828 CAG|GTGAGCGTCT...TTTTCCTTCTTA/CTTTCAATGACA...TGTAG|TGT 0 1 71.242
137658703 GT-AG 0 1.000000099473604e-05 524 rna-gnl|WGS:SJOL|mRNA119 25024173 10 46406 46929 Opisthorchis felineus 147828 TCG|GTAAGATCAA...TAAACTTGAATT/CTTGAATTCACA...CGTAG|TAC 0 1 75.064
137658704 GT-AG 0 1.000000099473604e-05 1227 rna-gnl|WGS:SJOL|mRNA119 25024173 11 47230 48456 Opisthorchis felineus 147828 GAG|GTCAGTTTTT...TTTTTTTCGACT/TCATTTCTCATT...TTCAG|ACT 0 1 84.618
137658706 GT-AG 0 6.183432199463472e-05 14579 rna-gnl|WGS:SJOL|mRNA119 25024173 1 6954 21532 Opisthorchis felineus 147828 GGT|GTAAGTATCT...TCCGTTTTACTC/ATCCGTTTTACT...TGTAG|TTC   0 6.561

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