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

✎ 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
163113996 GT-AG 0 0.0001997873596314 944 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 1 1176008 1176951 Prunella himalayana 670356 AGA|GTAAGCCCAG...GTGTTTTTATTT/TTTTTATTTACT...ACTAG|ATA 0 1 4.193
163113997 GT-AG 0 4.0022757616817085e-05 280 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 2 1175569 1175848 Prunella himalayana 670356 CTT|GTAAGTTTCT...ACTCACTGGATT/ACTGGATTCATT...ATCAG|GTC 0 1 9.025
163113998 GT-AG 0 0.0017823912848432 1105 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 3 1174319 1175423 Prunella himalayana 670356 CAG|GTAACTTTAT...AGTGCCATATTT/CCATATTTCATT...TCCAG|GTA 1 1 13.431
163113999 GT-AG 0 1.000000099473604e-05 826 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 4 1173332 1174157 Prunella himalayana 670356 GAG|GTAAAAAAAC...TTTTTCTTACCA/CTTTTTCTTACC...GACAG|ACA 0 1 18.323
163114000 GT-AG 0 1.000000099473604e-05 142 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 5 1173055 1173196 Prunella himalayana 670356 ACA|GTAAGTGCAA...ATCTTTTTAAAG/TTTTTTTTCAAT...TGCAG|TTT 0 1 22.425
163114001 GT-AG 0 2.9807135629245076e-05 925 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 6 1171944 1172868 Prunella himalayana 670356 AAG|GTACGTATAG...TTTTTTTTATTA/ATTTTTTTTATT...TCTAG|GAG 0 1 28.077
163114002 GT-AG 0 5.045181523302846e-05 680 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 7 1171004 1171683 Prunella himalayana 670356 TAC|GTAAGAATTT...AAATCTTTGATT/AAATCTTTGATT...ATCAG|ATA 2 1 35.977
163114003 GT-AG 0 1.000000099473604e-05 627 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 8 1170234 1170860 Prunella himalayana 670356 CTG|GTAAGTTGAG...CATATTTTAAAT/TAATTTTTCATA...CTTAG|ATT 1 1 40.322
163114004 GT-AG 0 1.000000099473604e-05 1439 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 9 1168567 1170005 Prunella himalayana 670356 ATG|GTAAGAAAAT...TTTTCTTTAACC/TTTTCTTTAACC...CTCAG|ACA 1 1 47.25
163114005 GT-AG 0 1.38106055458022e-05 1085 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 10 1167251 1168335 Prunella himalayana 670356 TGC|GTAAGTAATT...AAGGTCCTAATA/AAGGTCCTAATA...TGTAG|TTG 1 1 54.269
163114006 GT-AG 0 76.10381694480651 1134 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 11 1165970 1167103 Prunella himalayana 670356 CAT|GTATCCCTAA...TTTGTCTTATTT/ATTTGTCTTATT...GCCAG|TGC 1 1 58.736
163114007 GT-AG 0 0.0003004844800798 2004 rna-gnl|WGS:VYZK|PRUHIM_R08672_mrna 29262592 12 1163622 1165625 Prunella himalayana 670356 GAT|GTAAGCATAT...CTGGCATTAACG/CTGGCATTAACG...TGCAG|AAA 0 1 69.189

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