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

✎ 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
163593493 GT-AG 0 0.000537230333366 450 rna-XM_016795895.1 29376515 1 3301486 3301935 Prunus mume 102107 ATG|GTAAGTTTTT...TTGACTTTGACT/GAATTTCTAATC...TGCAG|ATA 0 1 20.803
163593494 GT-AG 0 1.000000099473604e-05 106 rna-XM_016795895.1 29376515 2 3302002 3302107 Prunus mume 102107 CAG|GTGTGAGCCA...GGTGCTTTGAAA/ATGGTTCTCAGT...TACAG|CAC 0 1 22.382
163593495 GT-AG 0 0.0465546975674978 150 rna-XM_016795895.1 29376515 3 3302243 3302392 Prunus mume 102107 GTG|GTATGTTGGA...TTTGCCTTGATG/CTTCTATTTATT...ACCAG|GAA 0 1 25.61
163593496 GT-AG 0 1.000000099473604e-05 360 rna-XM_016795895.1 29376515 4 3302459 3302818 Prunus mume 102107 TTG|GTGAGTTTTA...GTTTGTTTAATA/GTTTGTTTAATA...TACAG|GTG 0 1 27.188
163593497 GT-AG 0 1.000000099473604e-05 90 rna-XM_016795895.1 29376515 5 3303005 3303094 Prunus mume 102107 GAG|GTTTGGACAT...TTGGTTTTAATA/TTGGTTTTAATA...CACAG|ATA 0 1 31.636
163593498 GT-AG 0 0.0014569963056104 90 rna-XM_016795895.1 29376515 6 3303182 3303271 Prunus mume 102107 ACT|GTAAGCTCTG...GTGACATTAATT/CATTAATTAATG...TGTAG|GAG 0 1 33.716
163593499 GT-AG 0 1.5608288910584597e-05 142 rna-XM_016795895.1 29376515 7 3303386 3303527 Prunus mume 102107 ATG|GTTTGTATTT...AAATCTTTTCCC/TGTTATATCACA...GATAG|GTG 0 1 36.442
163593500 GT-AG 0 0.0073452899314198 132 rna-XM_016795895.1 29376515 8 3303653 3303784 Prunus mume 102107 TGG|GTATATATAC...TGTTTCTTATTA/ATGTTTCTTATT...TGCAG|GGC 2 1 39.431
163593501 GT-AG 0 0.0004382687867766 5254 rna-XM_016795895.1 29376515 9 3303894 3309147 Prunus mume 102107 GCT|GTAAGTCTCC...TGAATTTTAATG/TCTTTGCTCAAC...CAGAG|ATG 0 1 42.037
163593502 GT-AG 0 1.000000099473604e-05 127 rna-XM_016795895.1 29376515 10 3309459 3309585 Prunus mume 102107 CAG|GTGTGTCTCA...ACACTTGTGAAT/TGTGAATTGAAT...TGCAG|GGA 2 1 49.474
163593503 GT-AG 0 0.0039040344486643 302 rna-XM_016795895.1 29376515 11 3309714 3310015 Prunus mume 102107 TTG|GTATGCACAA...TTGGGCTTAATT/GCATTCTTCATC...AATAG|GAC 1 1 52.535
163604984 GT-AG 0 1.000000099473604e-05 571 rna-XM_016795895.1 29376515 12 3311526 3312096 Prunus mume 102107 AAG|GTCAGTAAAT...TATTCTTTAGTT/GCTATTCTCATT...TGCAG|GAT   0 88.642
163604985 GT-AG 0 3.9441144152441934e-05 172 rna-XM_016795895.1 29376515 13 3312198 3312369 Prunus mume 102107 ATG|GTATAAAACA...ATTGTATTGACA/ATTGTATTGACA...ACCAG|GGG   0 91.057

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