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)

13 rows where transcript_id = 28131414

✎ 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
156032195 GT-AG 0 1.000000099473604e-05 98 rna186.p1 28131414 1 423094 423191 Planoprotostelium fungivorum 1890364 CAG|GTGAGCATCA...CATTTCAGAATG/AAGATGATGATA...CTCAG|GCT 0 1 13.139
156032196 GT-AG 0 1.000000099473604e-05 40 rna186.p1 28131414 2 423249 423288 Planoprotostelium fungivorum 1890364 CTG|GTACGTCCGA...TACCTCTGTACA/ACTCCGCTGATC...ATCAG|GCT 0 1 14.68
156032197 GT-AG 0 1.000000099473604e-05 75 rna186.p1 28131414 3 423442 423516 Planoprotostelium fungivorum 1890364 CAC|GTGAGTTGTA...AATTCATCGAAA/CGAAAATTCATC...GACAG|CTT 0 1 18.816
156032198 GT-AG 0 1.000000099473604e-05 43 rna186.p1 28131414 4 424462 424504 Planoprotostelium fungivorum 1890364 CAG|GTGAGTGAGA...ATCTCGATGAAA/TGAAATCTCACG...CACAG|GTG 0 1 44.363
156032199 GT-AG 0 1.000000099473604e-05 46 rna186.p1 28131414 5 424617 424662 Planoprotostelium fungivorum 1890364 AAG|GTGCGACCCC...GACGTCATGACC/GACGTCATGACC...TGCAG|AAC 1 1 47.391
156032200 GT-AG 0 1.000000099473604e-05 38 rna186.p1 28131414 6 424746 424783 Planoprotostelium fungivorum 1890364 CAA|GTAAGATATC...ATCGTCTGAGGT/TATCGTCTGAGG...CACAG|GTG 0 1 49.635
156032201 GT-AG 0 1.000000099473604e-05 157 rna186.p1 28131414 7 425113 425269 Planoprotostelium fungivorum 1890364 ATT|GTGAGTATCA...TTTATCATGATT/TCATGATTTACA...GATAG|GGA 2 1 58.529
156032202 GT-AG 0 1.000000099473604e-05 41 rna186.p1 28131414 8 425807 425847 Planoprotostelium fungivorum 1890364 GAG|GTGATGTCAC...GTGACCTAATCG/CGTGACCTAATC...AACAG|CCG 2 1 73.047
156032203 GT-AG 0 0.0004585384294475 43 rna186.p1 28131414 9 425909 425951 Planoprotostelium fungivorum 1890364 GAG|GTATTTCCTT...GAAATCTCATCT/CGAAATCTCATC...TACAG|GTC 0 1 74.696
156032204 GT-AG 0 1.000000099473604e-05 36 rna186.p1 28131414 10 426192 426227 Planoprotostelium fungivorum 1890364 AAG|GTGAAATCTC...TTTCGTCTGACG/TTTCGTCTGACG...GACAG|AGT 0 1 81.184
156032205 GT-AG 0 8.377502256850871e-05 58 rna186.p1 28131414 11 426425 426482 Planoprotostelium fungivorum 1890364 GAG|GTATATGGGA...ATCGTCATGACG/CACATCGTCATG...CGCAG|GGC 2 1 86.51
156032206 GT-AG 0 1.000000099473604e-05 43 rna186.p1 28131414 12 426561 426603 Planoprotostelium fungivorum 1890364 CAG|GTACTACCTC...GAAATCTCATCC/CGAAATCTCATC...TTCAG|ATT 2 1 88.619
156032207 GT-AG 0 1.000000099473604e-05 35 rna186.p1 28131414 13 426831 426865 Planoprotostelium fungivorum 1890364 TCG|GTAAGGAGGG...ATCGTCTGACCA/GATCGTCTGACC...TCCAG|GGG 1 1 94.755

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