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

✎ 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
86766118 GT-AG 0 0.1815271851455384 131 Gomus.A01G151800.1.v1.1 16261808 1 62693951 62694081 Gossypium mustelinum 34275 TGC|GTATGTATTT...CATCTCTTATTT/GCATCTCTTATT...CTCAG|GCA 2 1 6.716
86766119 GT-AG 0 1.000000099473604e-05 302 Gomus.A01G151800.1.v1.1 16261808 2 62693572 62693873 Gossypium mustelinum 34275 AAG|GTATGAAAAG...ATATCCTTCACC/ATATCCTTCACC...AACAG|GAG 1 1 9.088
86766120 GT-AG 0 1.1963772593954992e-05 168 Gomus.A01G151800.1.v1.1 16261808 3 62693131 62693298 Gossypium mustelinum 34275 TAC|GTAAGTACTT...TTGTCTTTTTCA/GTCTTTTTCATG...TGAAG|CAT 1 1 17.498
86766121 GT-AG 0 7.994506556381057e-05 74 Gomus.A01G151800.1.v1.1 16261808 4 62692993 62693066 Gossypium mustelinum 34275 CCC|GTAAGTTCGT...TAGGCATTAAAT/TCTGCTCTCACA...TGCAG|GTA 2 1 19.47
86766122 GT-AG 0 0.2584158973991579 157 Gomus.A01G151800.1.v1.1 16261808 5 62692689 62692845 Gossypium mustelinum 34275 GGG|GTATATTTTT...GTTCTTTTGATT/GTTCTTTTGATT...TTTAG|GCA 2 1 23.999
86766123 GT-AG 0 0.0001024899047215 526 Gomus.A01G151800.1.v1.1 16261808 6 62692128 62692653 Gossypium mustelinum 34275 TTT|GTAAGTTCTT...AGATTTTTATGT/TCCATTTTCATG...TGCAG|CTT 1 1 25.077
86766124 GT-AG 0 1.7805157676567027e-05 267 Gomus.A01G151800.1.v1.1 16261808 7 62691787 62692053 Gossypium mustelinum 34275 TTT|GTAAGTGGTT...ACTTTTTTACTT/GACTTTTTTACT...AGTAG|GTT 0 1 27.357
86766125 GT-AG 0 0.0001936563012405 455 Gomus.A01G151800.1.v1.1 16261808 8 62690430 62690884 Gossypium mustelinum 34275 CAG|GTATGTGGTT...TCATTCTTACTA/TTCATTCTTACT...TGAAG|ATT 2 1 55.145
86766126 GT-AG 0 0.0866435764219809 270 Gomus.A01G151800.1.v1.1 16261808 9 62689863 62690132 Gossypium mustelinum 34275 AAG|GTATATTTTT...TAATCATTAGCT/TGGTTTTTCAAT...TTCAG|CTA 2 1 64.295
86766127 GT-AG 0 0.0003679691575659 246 Gomus.A01G151800.1.v1.1 16261808 10 62689179 62689424 Gossypium mustelinum 34275 CAG|GTATAATAAG...TAAACCTTGATG/TGATGATTTACC...TTCAG|GAT 2 1 77.788
86766128 GT-AG 0 0.0001965106451027 80 Gomus.A01G151800.1.v1.1 16261808 11 62688950 62689029 Gossypium mustelinum 34275 TTT|GTAAGTTGAA...ATCTCCTTCATT/ATTATGTTTATA...CGCAG|CAC 1 1 82.378
86766129 GT-AG 0 0.010178765217987 82 Gomus.A01G151800.1.v1.1 16261808 12 62688578 62688659 Gossypium mustelinum 34275 TTG|GTATGTTCTA...TTTTTCTAGATG/ATGAGCTTAATA...TTCAG|TGG 0 1 91.312
86766130 GT-AG 0 1.000000099473604e-05 257 Gomus.A01G151800.1.v1.1 16261808 13 62688187 62688443 Gossypium mustelinum 34275 AAA|GTTAGTAATA...GCTTCCTCAAAG/AAAGTGTTGATA...TTCAG|GTA 2 1 95.441

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