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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
156033195 GT-AG 0 0.0027259297946658 38 rna76.p1 28131487 1 160793 160830 Planoprotostelium fungivorum 1890364 AGA|GTGTTCGTTT...TGTTTCTCGATT/TGTTTCTCGATT...GATAG|GTT 0 1 6.314
156033196 GT-AG 0 1.000000099473604e-05 46 rna76.p1 28131487 2 160584 160629 Planoprotostelium fungivorum 1890364 TAG|GTGTGATGAA...TTGTTCATAATG/TTGTTGTTCATA...GTTAG|ACG 1 1 17.379
156033197 GT-AG 0 0.0002522188236579 47 rna76.p1 28131487 3 160439 160485 Planoprotostelium fungivorum 1890364 GAG|GTATTTCCTC...ACCATCTCAAAA/GTCGAATTGACA...TCCAG|CAC 0 1 24.033
156033198 GT-AG 0 1.000000099473604e-05 43 rna76.p1 28131487 4 160225 160267 Planoprotostelium fungivorum 1890364 CAA|GTGACGACAT...GATCTCATACTC/CATGATCTCATA...TTTAG|GCA 0 1 35.642
156033199 GT-AG 0 1.000000099473604e-05 50 rna76.p1 28131487 5 159971 160020 Planoprotostelium fungivorum 1890364 GAG|GTGACTCATC...GAAGTTTTGGCG/CGGGAACTGACT...GACAG|AAT 0 1 49.491
156033200 GT-AG 0 1.000000099473604e-05 44 rna76.p1 28131487 6 159875 159918 Planoprotostelium fungivorum 1890364 GAG|GTGATGCATG...TTGTCCATCGAA/GAAGGTCTCACG...ATCAG|GCA 1 1 53.021
156033201 GT-AG 0 1.000000099473604e-05 79 rna76.p1 28131487 7 159631 159709 Planoprotostelium fungivorum 1890364 TCG|GTGAATCTTC...ATCATCATGATG/CAAGTGCTCACC...GACAG|GTA 1 1 64.223
156033202 GT-AG 0 1.000000099473604e-05 38 rna76.p1 28131487 8 159569 159606 Planoprotostelium fungivorum 1890364 CAT|GTATGAGATT...ATTTCGCTGATC/ATTTCGCTGATC...CGCAG|GTT 1 1 65.852
156033203 GT-AG 0 1.000000099473604e-05 41 rna76.p1 28131487 9 159409 159449 Planoprotostelium fungivorum 1890364 AAG|GTACGTACCG...CGATCCCTCACG/CGATCCCTCACG...CACAG|GCT 0 1 73.931
156033204 GT-AG 0 1.000000099473604e-05 48 rna76.p1 28131487 10 159282 159329 Planoprotostelium fungivorum 1890364 AAG|GTGGATGTCT...TCTTTCTTCCAC/CACCTGCTCACT...AACAG|GTA 1 1 79.294
156033205 GT-AG 0 1.000000099473604e-05 38 rna76.p1 28131487 11 159050 159087 Planoprotostelium fungivorum 1890364 AAG|GTCAGATGAT...GGTGTCTGATGA/GGGTGTCTGATG...GACAG|GTG 0 1 92.464

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