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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, 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
163593988 GT-AG 0 1.000000099473604e-05 83 rna-XM_008248070.1 29376559 2 23919099 23919181 Prunus mume 102107 GGG|GTTAGTGCAT...TGTTTCTTGTTC/ATTGGATTCACT...CTTAG|GAG 0 1 31.727
163593989 GT-AG 0 1.000000099473604e-05 483 rna-XM_008248070.1 29376559 3 23918477 23918959 Prunus mume 102107 ATG|GTAAATGGAC...ACTATCATAATT/ATTGTAGTTACT...TTCAG|TTC 1 1 35.427
163593990 GT-AG 0 0.0053145402849264 526 rna-XM_008248070.1 29376559 4 23917760 23918285 Prunus mume 102107 GAG|GTATACACTT...AATTTATTGATT/AATTTATTGATT...TGCAG|GTT 0 1 40.511
163593991 GT-AG 0 1.992442130804493e-05 99 rna-XM_008248070.1 29376559 5 23917553 23917651 Prunus mume 102107 AAG|GTATGTGCTT...ATGTGCTGAGTT/TATGTGCTGAGT...TGCAG|TCT 0 1 43.386
163593992 GT-AG 0 9.587440284209846e-05 192 rna-XM_008248070.1 29376559 6 23917157 23917348 Prunus mume 102107 ATG|GTCTGTTAGC...TCTGCATTAACT/TGGTTGTTCATT...TGCAG|AGC 0 1 48.816
163593993 GT-AG 0 3.80329306925091e-05 312 rna-XM_008248070.1 29376559 7 23916613 23916924 Prunus mume 102107 TAG|GTACATATTG...TTGGTCTTCCAA/TACTATATAACT...TGTAG|GTA 1 1 54.991
163593994 GT-AG 0 0.0001908741431966 107 rna-XM_008248070.1 29376559 8 23916356 23916462 Prunus mume 102107 AAG|GTCTGCTATT...GTTTTGTTACTT/TGTTTTGTTACT...TTTAG|GAG 1 1 58.983
163593995 GT-AG 1 99.99890756591508 325 rna-XM_008248070.1 29376559 9 23915874 23916198 Prunus mume 102107 GCT|GTATCCTTCA...GTGTCTTTAACA/GTGTCTTTAACA...TAAAG|ATA 2 1 63.162
163593996 GT-AG 0 1.000000099473604e-05 83 rna-XM_008248070.1 29376559 10 23915663 23915745 Prunus mume 102107 TAG|GTAGGTAACT...TGAATCTCGATT/GATTTTCTCAAG...TGCAG|CAA 1 1 66.569
163593997 GT-AG 0 1.000000099473604e-05 79 rna-XM_008248070.1 29376559 11 23915261 23915339 Prunus mume 102107 AAG|GTAATAAGAT...CCATCATTAAAT/ATGTCATTTATC...TGCAG|GCA 0 1 75.166
163593998 GT-AG 0 1.000000099473604e-05 213 rna-XM_008248070.1 29376559 12 23914859 23915071 Prunus mume 102107 AAG|GTATGAAAAA...TCCATTTTAATT/TCCATTTTAATT...ATCAG|GTT 0 1 80.197
163605012 GT-AG 0 7.838145501186875e-05 932 rna-XM_008248070.1 29376559 1 23920367 23921298 Prunus mume 102107 AAG|GTAAGCTTCC...GTACATTTAATC/GTACATTTAATC...TGTAG|TAG   0 1.863
163605013 GT-AG 0 1.000000099473604e-05 97 rna-XM_008248070.1 29376559 13 23914521 23914617 Prunus mume 102107 GAG|GTAATGTTCT...ATTATCTGAACT/AATTATCTGAAC...TGCAG|GAT   0 86.612

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