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)

6 rows where transcript_id = 5963391

✎ View and edit SQL

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
30552319 GT-AG 0 1.000000099473604e-05 7185 rna-XM_042340047.1 5963391 1 47053941 47061125 Callorhinchus milii 7868 AAG|GTATGGCAGC...AACTCATTGTTT/TAAAAACTCATT...CACAG|ACA 1 1 1.245
30552320 GT-AG 0 1.000000099473604e-05 7313 rna-XM_042340047.1 5963391 2 47061215 47068527 Callorhinchus milii 7868 CAG|GTAATGGACC...TTTTTTTTAACA/TTTTTTTTAACA...TGCAG|GTG 0 1 2.977
30552321 GT-AG 0 1.000000099473604e-05 10463 rna-XM_042340047.1 5963391 3 47068645 47079107 Callorhinchus milii 7868 GTT|GTGGGTATAT...GTTTTTTTCTCT/GTTTTGGTGATC...CACAG|GGA 0 1 5.254
30552322 GT-AG 0 1.000000099473604e-05 7034 rna-XM_042340047.1 5963391 4 47079312 47086345 Callorhinchus milii 7868 GCG|GTAAAGGTCT...ATTTTTTTACCA/CATTTTTTTACC...TGCAG|GTA 0 1 9.224
30552323 GT-AG 0 1.4205203099961012e-05 1589 rna-XM_042340047.1 5963391 5 47086491 47088079 Callorhinchus milii 7868 CCG|GTAGGATGTT...ATCCCTTTATCA/CCCTTTATCAAT...TAAAG|CAA 1 1 12.045
30552324 GT-AG 0 1.000000099473604e-05 6653 rna-XM_042340047.1 5963391 6 47088670 47095322 Callorhinchus milii 7868 CAG|GTAAAAGCAG...CCTTTTTTATCT/TAATATTTCATA...TTCAG|GCC 0 1 23.526

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