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

✎ 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
92254974 GT-AG 0 5.286202895369815e-05 110 rna-XM_021427173.1 17265291 1 5628738 5628847 Herrania umbratica 108875 CAG|GTCCTCCTCT...TTATTCTTTTCA/ATTCTTTTCACC...TTCAG|TCA 0 1 1.274
92254975 GT-AG 0 0.2013376384546572 133 rna-XM_021427173.1 17265291 2 5628556 5628688 Herrania umbratica 108875 GAG|GTATACTAGA...TATTTTTTAATT/TATTTTTTAATT...TGAAG|GTA 1 1 1.945
92254976 GT-AG 0 5.577754147724352e-05 326 rna-XM_021427173.1 17265291 3 5628056 5628381 Herrania umbratica 108875 CTA|GTAAGATTTA...CATTCTTTATAG/ACTGTTTTCAAC...ATCAG|GTA 1 1 4.328
92254977 GT-AG 0 0.0007655401741441 174 rna-XM_021427173.1 17265291 4 5627680 5627853 Herrania umbratica 108875 CTT|GTAAGCTTTT...ATGTAATTAATG/ATGTAATTAATG...TTCAG|GTG 2 1 7.094
92254978 GT-AG 0 0.0018260563692275 253 rna-XM_021427173.1 17265291 5 5627209 5627461 Herrania umbratica 108875 CTG|GTATAGTTTT...CACCTTTTAAAG/TAAAGTTTCATA...TCCAG|GAT 1 1 10.079
92254979 GT-AG 0 1.000000099473604e-05 120 rna-XM_021427173.1 17265291 6 5626092 5626211 Herrania umbratica 108875 CAG|GTAATGTGCT...GACCCCTTAATG/TTTCTATTGATT...TGTAG|GTT 2 1 23.733
92254980 GT-AG 0 3.7901515636025694e-05 456 rna-XM_021427173.1 17265291 7 5624656 5625111 Herrania umbratica 108875 AAG|GTAGTTTCTA...CCATCTATAATT/CTATAATTAATT...TACAG|ATT 1 1 37.154
92254981 GT-AG 0 1.000000099473604e-05 154 rna-XM_021427173.1 17265291 8 5624413 5624566 Herrania umbratica 108875 CAG|GTTTGTCACA...AAGACTTAGACA/CAGTAATTCATT...TGCAG|GTC 0 1 38.373
92254982 GT-AG 0 0.0005095377554288 316 rna-XM_021427173.1 17265291 9 5623737 5624052 Herrania umbratica 108875 GAA|GTAAGTTTGC...GTTGCCGTAACT/GAATCATTGATT...TTCAG|ATC 0 1 43.303
92254983 GT-AG 0 3.3417778254330686e-05 122 rna-XM_021427173.1 17265291 10 5622375 5622496 Herrania umbratica 108875 CTG|GTAGCAGACT...CTCCTTTTACTT/GATGTGCTTATT...TCCAG|ATG 1 1 60.285
92254984 GT-AG 0 2.9539675349798803e-05 103 rna-XM_021427173.1 17265291 11 5622006 5622108 Herrania umbratica 108875 GAG|GTACATGGGC...ATGTTTTTGACT/ATGTTTTTGACT...TGCAG|GTA 0 1 63.928

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