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)

12 rows where transcript_id = 17265287

✎ 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
92254825 GT-AG 0 0.0034023998203716 96 rna-XM_021437404.1 17265287 1 10458584 10458679 Herrania umbratica 108875 CGG|GTAACCGCTC...TGCGTTTTAGTT/ATTTATTTAATT...TTCAG|GGT 2 1 2.4
92254826 GT-AG 0 0.0004101518399852 1299 rna-XM_021437404.1 17265287 2 10456555 10457853 Herrania umbratica 108875 GAT|GTAATTTGCA...GACTTCTTGCCT/TACAATCTTATA...AGCAG|AAT 0 1 7.493
92254827 GT-AG 0 3.268242121483229e-05 1007 rna-XM_021437404.1 17265287 3 10449561 10450567 Herrania umbratica 108875 CAG|GTTTATTCAT...TTTCTGTTATCA/CAATTTCTCACT...TCCAG|GCT 2 1 49.26
92254828 GT-AG 0 5.750715672255085e-05 435 rna-XM_021437404.1 17265287 4 10447561 10447995 Herrania umbratica 108875 TAG|GTAATCAATG...ATTGTTTTATTT/TATTGTTTTATT...TGCAG|CTG 1 1 60.179
92254829 GT-AG 0 0.0198070635755701 894 rna-XM_021437404.1 17265287 5 10446403 10447296 Herrania umbratica 108875 TTG|GTATTTTGTC...GCCTTTTTAGAT/TTGTTTTGGATT...TGCAG|GTA 1 1 62.02
92254830 GT-AG 0 5.152980912740796e-05 327 rna-XM_021437404.1 17265287 6 10445855 10446181 Herrania umbratica 108875 CAG|GTAAAGTTTC...ATTTTCTTAATG/CATTTTCTTAAT...TCCAG|GTC 0 1 63.562
92254831 GT-AG 0 0.0022627843298062 274 rna-XM_021437404.1 17265287 7 10445309 10445582 Herrania umbratica 108875 TAG|GTATGGTTAA...TGTTCTTTAACA/CTCATCTTTATT...CTCAG|GCG 2 1 65.46
92254832 GT-AG 0 1.000000099473604e-05 80 rna-XM_021437404.1 17265287 8 10442210 10442289 Herrania umbratica 108875 CAG|GTATGAAACT...AAACACATAACT/TTTCATCTGACA...CACAG|ATT 0 1 86.522
92254833 GT-AG 0 5.3285907114343e-05 1248 rna-XM_021437404.1 17265287 9 10440829 10442076 Herrania umbratica 108875 CAG|GTTGCTATGC...ATATTGTTAGAA/TTAGAAGTGACT...TGCAG|ATA 1 1 87.449
92254834 GT-AG 0 1.000000099473604e-05 98 rna-XM_021437404.1 17265287 10 10440216 10440313 Herrania umbratica 108875 GAG|GTAGATTGAT...TATACTTGAGTT/TTTGTGTTCATT...TGCAG|GAA 0 1 91.042
92254835 GT-AG 0 2.1066324393026595e-05 414 rna-XM_021437404.1 17265287 11 10438893 10439306 Herrania umbratica 108875 CAG|GTTTAGATCT...TTTTCTTTATTG/GTTTTCTTTATT...TGCAG|CCT 0 1 97.384
92254836 GT-AG 0 1.000000099473604e-05 131 rna-XM_021437404.1 17265287 12 10438585 10438715 Herrania umbratica 108875 CAG|GTTAGATTTT...TAAGTCTTATTG/TTAAGTCTTATT...TACAG|GAA 0 1 98.619

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