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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
156033150 GT-AG 0 2.9557508350977312e-05 61 rna87.p1 28131481 2 198155 198215 Planoprotostelium fungivorum 1890364 AGC|GTAAGCCGAG...GCCTTCTGATCG/CGCCTTCTGATC...GACAG|ACG 2 1 24.017
156033151 GT-AG 0 1.000000099473604e-05 40 rna87.p1 28131481 3 197968 198007 Planoprotostelium fungivorum 1890364 CAA|GTGAATGCTC...TCTGCCTCATTG/TTGCTTCTCACC...TACAG|CAT 2 1 31.933
156033152 GT-AG 0 1.000000099473604e-05 45 rna87.p1 28131481 4 197877 197921 Planoprotostelium fungivorum 1890364 GAG|GTCCTCGATG...GTGTTCACATCA/AGACAACTGACA...GACAG|GAT 0 1 34.41
156033153 GT-AG 0 0.0020766479141244 45 rna87.p1 28131481 5 197713 197757 Planoprotostelium fungivorum 1890364 CAG|GTGTCCATGA...ACCGTCTCACAC/CACCGTCTCACA...AACAG|AGT 2 1 40.819
156033154 GT-AG 0 1.000000099473604e-05 70 rna87.p1 28131481 6 197519 197588 Planoprotostelium fungivorum 1890364 GCC|GTGAGTGAAA...TCTTTCTTGTCT/TGTCTTCTCATC...CACAG|ACT 0 1 47.496
156033155 GT-AG 0 0.0178385878386194 39 rna87.p1 28131481 7 197438 197476 Planoprotostelium fungivorum 1890364 CAG|GTATTCTGCG...TCGTTCTCATCG/GTCGTTCTCATC...ACGAG|GTT 0 1 49.758
156033156 GT-AG 0 1.000000099473604e-05 37 rna87.p1 28131481 8 197227 197263 Planoprotostelium fungivorum 1890364 ATG|GTGATCCGTT...TATGCTTCGACT/CTTCGACTGATC...TGTAG|ATG 0 1 59.128
156033157 GT-AG 0 1.000000099473604e-05 51 rna87.p1 28131481 9 196872 196922 Planoprotostelium fungivorum 1890364 TCG|GTGAATGATT...TCATTCTCACTT/TTCATTCTCACT...AACAG|GTG 1 1 75.498
156033158 GT-AG 0 1.000000099473604e-05 40 rna87.p1 28131481 10 196782 196821 Planoprotostelium fungivorum 1890364 GAA|GTCCGTGAAA...TTCATCTGAGTT/TTTCATCTGAGT...ATCAG|GTG 0 1 78.191
156033159 GT-AG 0 1.000000099473604e-05 39 rna87.p1 28131481 11 196485 196523 Planoprotostelium fungivorum 1890364 GAG|GTGAGAGGAT...CGAACGATAGTG/ACGATAGTGAAG...GATAG|ATC 0 1 92.084
156033682 GT-AG 0 1.000000099473604e-05 90 rna87.p1 28131481 1 198495 198584 Planoprotostelium fungivorum 1890364 CTG|GTGAAGAAAA...CCTTTTATGATC/TCAAATCTGACC...TTTAG|ACT   0 17.447

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