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)

10 rows where transcript_id = 22023879

✎ 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
119314549 GT-AG 0 1.000000099473604e-05 3184 Misin01G055200.1.v7.1 22023879 1 8720862 8724045 Miscanthus sinensis 62337 AAG|GTACGAGTAC...AATTTCCTAATG/TGTGTGTTCACA...GGCAG|GTG 1 1 4.47
119314550 GT-AG 0 1.000000099473604e-05 59 Misin01G055200.1.v7.1 22023879 2 8725335 8725393 Miscanthus sinensis 62337 AAG|GTAGAGGCTT...TTATACTTAAAG/GTTATACTTAAA...TTCAG|TTG 0 1 37.395
119314551 GT-AG 0 0.0013513005734951 233 Misin01G055200.1.v7.1 22023879 3 8725710 8725942 Miscanthus sinensis 62337 CTG|GTATATATTT...CTCACATTATTG/ACTATATTTATG...CACAG|GGG 1 1 45.466
119314552 GT-AG 0 2.24868927085368e-05 118 Misin01G055200.1.v7.1 22023879 4 8726206 8726323 Miscanthus sinensis 62337 GTG|GTAAGGTTTC...GCAACCTTACCA/TTGCTTTTCAAT...CTCAG|ATT 0 1 52.184
119314553 GT-AG 0 1.818446120177456e-05 71 Misin01G055200.1.v7.1 22023879 5 8726531 8726601 Miscanthus sinensis 62337 GAG|GTACATAGTA...GAGACCTAAAAG/CATACTCTGAGA...GCAAG|GGC 0 1 57.471
119314554 GT-AG 0 1.000000099473604e-05 149 Misin01G055200.1.v7.1 22023879 6 8726683 8726831 Miscanthus sinensis 62337 CAC|GTAAGTCCTG...AATGTGTTAAAA/AATGTGTTAAAA...GTCAG|ATT 0 1 59.54
119314555 GT-AG 0 1.000000099473604e-05 213 Misin01G055200.1.v7.1 22023879 7 8727798 8728010 Miscanthus sinensis 62337 GAG|GTGAAAATAC...GAACTCATGATT/GAACTCATGATT...TGCAG|GCA 0 1 84.215
119314556 GT-AG 0 0.1002309700149135 118 Misin01G055200.1.v7.1 22023879 8 8728107 8728224 Miscanthus sinensis 62337 GAG|GTACCCCTGA...CAGTTCTTCTCG/TGCAGTTTCAGT...CACAG|GTG 0 1 86.667
119314557 GT-AG 0 1.000000099473604e-05 83 Misin01G055200.1.v7.1 22023879 9 8728324 8728406 Miscanthus sinensis 62337 CAG|GTTAGCCTCA...CTGCTCTGAACA/CTGCTATTGATT...CTCAG|GTG 0 1 89.195
119314558 GT-AG 0 1.000000099473604e-05 161 Misin01G055200.1.v7.1 22023879 10 8728597 8728757 Miscanthus sinensis 62337 AAG|GTGAAACTAC...ATACTCTGGATT/CTGGATTTGATC...TGCAG|CGT 1 1 94.049

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