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)

14 rows where transcript_id = 28131461

✎ 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
156032941 GT-AG 0 1.000000099473604e-05 81 rna105.p1 28131461 1 243534 243614 Planoprotostelium fungivorum 1890364 GAG|GTGTGAGAAG...TCATTCATAATC/ATATCATTCATA...TTCAG|AGG 1 1 6.687
156032942 GT-AG 0 1.000000099473604e-05 157 rna105.p1 28131461 2 243656 243812 Planoprotostelium fungivorum 1890364 CAG|GTGATTGTCC...AGATCCTGATCC/CAGATCCTGATC...ACCAG|ACG 0 1 8.796
156032943 GT-AG 0 5.0745980578592015e-05 40 rna105.p1 28131461 3 243852 243891 Planoprotostelium fungivorum 1890364 GAG|GTACGTTCAT...CATTTCTCACCA/CCATTTCTCACC...AACAG|ATC 0 1 10.802
156032944 GT-AG 0 1.000000099473604e-05 47 rna105.p1 28131461 4 243957 244003 Planoprotostelium fungivorum 1890364 GAC|GTGAGCGATC...ACCCTCGTGACC/ACCCTCGTGACC...CACAG|AGA 2 1 14.146
156032945 GT-AG 0 1.000000099473604e-05 77 rna105.p1 28131461 5 244105 244181 Planoprotostelium fungivorum 1890364 ACG|GTGAGTTTTC...GTCTTCTCATCA/CGTCTTCTCATC...ATCAG|CGC 1 1 19.342
156032946 GT-AG 0 4.7414153069352e-05 39 rna105.p1 28131461 6 244373 244411 Planoprotostelium fungivorum 1890364 AAG|GTATATACAA...GATGTCTCAAGG/GGATGTCTCAAG...AGTAG|ATT 0 1 29.167
156032947 GT-AG 0 1.000000099473604e-05 46 rna105.p1 28131461 7 244500 244545 Planoprotostelium fungivorum 1890364 CCG|GTAGAACTCA...TTCGTCGGAATT/ATTCCGCTGAAA...GATAG|GTC 1 1 33.693
156032948 GT-AG 0 1.000000099473604e-05 38 rna105.p1 28131461 8 244659 244696 Planoprotostelium fungivorum 1890364 AAG|GTGAGATGTC...ACGTCGACAACG/CAACGACTGACG...CATAG|GAG 0 1 39.506
156032949 GT-AG 0 1.000000099473604e-05 37 rna105.p1 28131461 9 244781 244817 Planoprotostelium fungivorum 1890364 GAG|GTGAGATGAG...ATGCCGTTGAAA/ATGCCGTTGAAA...CGCAG|AAA 0 1 43.827
156032950 GT-AG 0 1.000000099473604e-05 41 rna105.p1 28131461 10 244861 244901 Planoprotostelium fungivorum 1890364 TGG|GTGAGTGTGC...GAATGATTGAAG/GATGGAATGATT...TTCAG|GTG 1 1 46.039
156032951 GT-AG 0 1.000000099473604e-05 91 rna105.p1 28131461 11 244944 245034 Planoprotostelium fungivorum 1890364 AAG|GTGACACACC...TCGTCATCGACA/CACATGCTGATG...GCCAG|TCT 1 1 48.2
156032952 GT-AG 0 1.000000099473604e-05 48 rna105.p1 28131461 12 245234 245281 Planoprotostelium fungivorum 1890364 GAG|GTGTGATTAC...GTCTTCTCACCG/CGTCTTCTCACC...TTCAG|GTT 2 1 58.436
156032953 GT-AG 0 1.000000099473604e-05 39 rna105.p1 28131461 13 245484 245522 Planoprotostelium fungivorum 1890364 CAG|GTGAGATACC...CGTGTGATGACG/CGTGTGATGACG...CACAG|AAC 0 1 68.827
156032954 GT-AG 0 1.000000099473604e-05 40 rna105.p1 28131461 14 245814 245853 Planoprotostelium fungivorum 1890364 AAG|GTGAGAGTTC...CTGTCTCAGATA/CGCGAGCTCATC...CACAG|CCG 0 1 83.796

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