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

✎ 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
99589404 GT-AG 0 1.1156249525359669e-05 1246 rna-XM_041139336.1 18666359 1 33869390 33870635 Juglans microcarpa x juglans regia 2249226 AAG|GTTTGTGTTT...ATTTTCTTGTTT/TTCACATTCATG...TTCAG|GGT 2 1 7.193
99589405 GT-AG 0 1.000000099473604e-05 1260 rna-XM_041139336.1 18666359 2 33870747 33872006 Juglans microcarpa x juglans regia 2249226 GAA|GTGAGTTATA...CATTTTTTCATT/CATTTTTTCATT...TGCAG|GGT 2 1 9.975
99589406 GT-AG 0 0.0036983049326518 354 rna-XM_041139336.1 18666359 3 33872355 33872708 Juglans microcarpa x juglans regia 2249226 CAT|GTATGTACAT...GGTATCTTAAAT/TAAATACTTACT...GCCAG|GCA 2 1 18.697
99589407 GT-AG 0 1.000000099473604e-05 110 rna-XM_041139336.1 18666359 4 33873029 33873138 Juglans microcarpa x juglans regia 2249226 CTG|GTAAAGCCAG...CCTTCTTTGAAA/CATGGTTTCATG...TGCAG|GTT 1 1 26.717
99589408 GT-AG 0 1.000000099473604e-05 370 rna-XM_041139336.1 18666359 5 33873231 33873600 Juglans microcarpa x juglans regia 2249226 AGG|GTTAGGATTC...TAATTCTTAAAA/TTGTTTCTAATT...GTTAG|GAA 0 1 29.023
99589409 GT-AG 0 3.2472826736388614e-05 520 rna-XM_041139336.1 18666359 6 33873962 33874481 Juglans microcarpa x juglans regia 2249226 ATT|GTAAGTAACA...TGTACTTTAAAT/AATTATCTAATC...TTCAG|CTG 1 1 38.07
99589410 GT-AG 0 0.4678318734960981 567 rna-XM_041139336.1 18666359 7 33874693 33875259 Juglans microcarpa x juglans regia 2249226 AAG|GTATACTTGC...TTCTACTTAATT/TTTAAGCTCATG...AAAAG|CTT 2 1 43.358
99589411 GT-AG 0 1.000000099473604e-05 145 rna-XM_041139336.1 18666359 8 33875375 33875519 Juglans microcarpa x juglans regia 2249226 CAG|GTAATGAAGT...ATTACTTTGATG/ACTACTCTAATT...TGCAG|GAA 0 1 46.241
99589412 GT-AG 0 0.0317711825178165 1033 rna-XM_041139336.1 18666359 9 33875682 33876714 Juglans microcarpa x juglans regia 2249226 TTG|GTATGTTTAA...TTTATTTTAATT/TTTATTTTAATT...GCCAG|GTT 0 1 50.301
99589413 GT-AG 0 7.539861248157269e-05 320 rna-XM_041139336.1 18666359 10 33877373 33877692 Juglans microcarpa x juglans regia 2249226 CAG|GTAAGCTTCA...TAATTTATAACC/TGTCTTTTCATA...GTCAG|GTC 1 1 66.792
99589414 GT-AG 0 0.0031654481833924 471 rna-XM_041139336.1 18666359 11 33877900 33878370 Juglans microcarpa x juglans regia 2249226 CAG|GTTTTCTCTT...CAATTTTTATTT/TCAATTTTTATT...CACAG|GTG 1 1 71.98

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