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

✎ 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
92255693 GT-AG 0 0.006890701324814 583 rna-XM_021418511.1 17265337 5 6985575 6986157 Herrania umbratica 108875 AAG|GTATATCCTT...TGTCTTTTAACT/TTTTAACTGATA...ATCAG|TTG 0 1 28.584
92255694 GT-AG 0 1.000000099473604e-05 309 rna-XM_021418511.1 17265337 6 6986350 6986658 Herrania umbratica 108875 CAG|GTGTGACATT...CTTTTCTTGAAT/TTTGTTCTAATG...TTAAG|GGA 0 1 34.283
92255695 GT-AG 0 1.000000099473604e-05 537 rna-XM_021418511.1 17265337 7 6986824 6987360 Herrania umbratica 108875 GAG|GTAATTGTTT...CCTTGTTTAACT/CCTTGTTTAACT...TCCAG|ATT 0 1 39.181
92255696 GT-AG 0 1.000000099473604e-05 92 rna-XM_021418511.1 17265337 8 6987460 6987551 Herrania umbratica 108875 TGG|GTAGGTGAGA...TTTTTCTAAACC/TTTTTTCTAAAC...AACAG|GTG 0 1 42.119
92255697 GT-AG 0 0.0001756209549714 387 rna-XM_021418511.1 17265337 9 6987804 6988190 Herrania umbratica 108875 GAG|GTATAATCAC...CCCTGCTTGATG/AAATTCCTAATG...TATAG|TTC 0 1 49.599
92255698 GT-AG 0 1.6469426825792007e-05 106 rna-XM_021418511.1 17265337 10 6988455 6988560 Herrania umbratica 108875 GAG|GTTTGTATTT...TCTTTTTGGATC/GATTTTGTGATC...TGCAG|GTT 0 1 57.435
92255699 GT-AG 0 6.203393068277245e-05 138 rna-XM_021418511.1 17265337 11 6988693 6988830 Herrania umbratica 108875 GAG|GTAGGTTTAT...TGCCCCTGAATC/GTGCCCCTGAAT...TGCAG|CTA 0 1 61.354
92255700 GT-AG 0 0.9061317776273148 82 rna-XM_021418511.1 17265337 12 6989092 6989173 Herrania umbratica 108875 AAG|GTATCTACTT...TTATTTTTAATG/TTGATATTCATT...CGCAG|AAT 0 1 69.101
92255701 GT-AG 0 0.0201528289857792 797 rna-XM_021418511.1 17265337 13 6989246 6990042 Herrania umbratica 108875 CCT|GTATGTTGAA...GTTTGTTTATTG/TGTTTGTTTATT...ACCAG|GTG 0 1 71.238
92255702 GT-AG 0 1.000000099473604e-05 264 rna-XM_021418511.1 17265337 14 6990193 6990456 Herrania umbratica 108875 CAG|GTAGAATTGG...TGCTCCCTGATC/AAAATATTAATT...TCTAG|GTT 0 1 75.69
92255703 GT-AG 0 0.0008446030870794 139 rna-XM_021418511.1 17265337 15 6990928 6991066 Herrania umbratica 108875 CAG|GTAACTCTTG...GTTGTTTGGATA/TTGCTTGTCACT...TGCAG|CTA 0 1 89.671
92255704 GT-AG 0 1.000000099473604e-05 108 rna-XM_021418511.1 17265337 16 6991384 6991491 Herrania umbratica 108875 CAG|GTAAAATGTT...AAATTCTTATGG/CAAATTCTTATG...CTAAG|ATT 2 1 99.08

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