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)

9 rows where transcript_id = 15319302

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
82923569 GT-AG 0 0.0414863553983157 2911 rna-gnl|WGS:VWPO|GLAPRA_R10114_mrna 15319302 1 586444 589354 Glareola pratincola 43316 TCT|GTTCCATGAT...TTGTCCATAACT/TGGTTGTTGAAA...CTCAG|ACA 1 1 9.064
82923570 GT-AG 0 0.000295785458201 1618 rna-gnl|WGS:VWPO|GLAPRA_R10114_mrna 15319302 2 589524 591141 Glareola pratincola 43316 CAG|GTATTTAAAA...CTTTTCTTGTCT/GCTTTGTTAATA...GATAG|ATT 2 1 21.418
82923571 GT-AG 0 1.000000099473604e-05 3614 rna-gnl|WGS:VWPO|GLAPRA_R10114_mrna 15319302 3 591237 594850 Glareola pratincola 43316 AAG|GTAATGGAGT...AAGTCAATAAAT/GAGATGATTATT...TCCAG|CTG 1 1 28.363
82923572 GT-AG 0 1.69358869633659e-05 5010 rna-gnl|WGS:VWPO|GLAPRA_R10114_mrna 15319302 4 594958 599967 Glareola pratincola 43316 CAG|GTATTGAGGT...ATTTTTTTCTCT/TTTTCTCTCACT...GCCAG|ATC 0 1 36.184
82923573 GT-AG 0 2.873167059326308e-05 2102 rna-gnl|WGS:VWPO|GLAPRA_R10114_mrna 15319302 5 600124 602225 Glareola pratincola 43316 CAG|GTATAAGAGG...TTGCCCTTATTG/TTTGCCCTTATT...TTGAG|GTT 0 1 47.588
82923574 GT-AG 0 2.136008767590295e-05 2184 rna-gnl|WGS:VWPO|GLAPRA_R10114_mrna 15319302 6 602314 604497 Glareola pratincola 43316 TAG|GTAAATATTG...AAGTCTTTATAT/AAAGTCTTTATA...CGAAG|GCA 1 1 54.02
82923575 GT-AG 0 5.223100230961863 182 rna-gnl|WGS:VWPO|GLAPRA_R10114_mrna 15319302 7 604651 604832 Glareola pratincola 43316 CAG|GTACCTTTTT...TCTGCCTTGACT/ATTTTTGTCATT...TTAAG|ATG 1 1 65.205
82923576 GT-AG 0 5.035759875890696e-05 289 rna-gnl|WGS:VWPO|GLAPRA_R10114_mrna 15319302 8 605070 605358 Glareola pratincola 43316 GAG|GTAAGCTAGA...GCTTTTTTGAAT/TTTGAATTGATA...TGCAG|GTA 1 1 82.529
82923577 GT-AG 0 1.7360013764841656e-05 392 rna-gnl|WGS:VWPO|GLAPRA_R10114_mrna 15319302 9 605482 605873 Glareola pratincola 43316 TTT|GTAAGTAATT...CTTTCTATATTC/AAATACATAATT...TTCAG|CAA 1 1 91.52

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