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)

14 rows where transcript_id = 26649196

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
147771308 GT-AG 0 1.000000099473604e-05 101 PHUM601540-RA 26649196 2 192756 192856 Pediculus humanus 121224 TGG|GTAAATGATT...ATTTTCTTTTCA/TTTCTTTTCATT...TGTAG|GGT 0 1 38.491
147771309 GT-AG 0 0.000146300566436 138 PHUM601540-RA 26649196 3 192973 193110 Pediculus humanus 121224 TGA|GTAAGCAAAA...TTTTTTTTAAAT/TTATTATTAATT...TTTAG|AAT 2 1 41.697
147771310 GT-AG 0 1.000000099473604e-05 88 PHUM601540-RA 26649196 4 193264 193351 Pediculus humanus 121224 CAG|GTAACAGGGA...AATTATTTATAT/CAATTATTTATA...TTCAG|AAC 2 1 45.924
147771311 GT-AG 0 0.0007859759558957 94 PHUM601540-RA 26649196 5 193539 193632 Pediculus humanus 121224 ATG|GTATATGGTT...TTAACTTTAAAA/GTTTATTTAACT...TGTAG|TTG 0 1 51.091
147771312 GT-AG 0 1.000000099473604e-05 77 PHUM601540-RA 26649196 6 193865 193941 Pediculus humanus 121224 ATG|GTAAATCAAT...GAACCGTTAATT/CGTTAATTAATT...TTCAG|ATG 1 1 57.502
147771313 GT-AG 0 1.000000099473604e-05 99 PHUM601540-RA 26649196 7 194100 194198 Pediculus humanus 121224 ATG|GTGATTTTCT...GTTTTCTTTATG/TTGAAATTGATT...TTTAG|TCT 0 1 61.868
147771314 GT-AG 0 1.000000099473604e-05 87 PHUM601540-RA 26649196 8 194425 194511 Pediculus humanus 121224 TAG|GTTCGTGAAT...TGTTTTTTGATT/TGTTTTTTGATT...TTCAG|GTG 1 1 68.113
147771315 GT-AG 0 1.000000099473604e-05 78 PHUM601540-RA 26649196 9 194666 194743 Pediculus humanus 121224 GAG|GTTATTCAAA...TAAATTTAAATT/TTAAATTTAAAT...TTCAG|GGG 2 1 72.368
147771316 GT-AG 0 1.000000099473604e-05 88 PHUM601540-RA 26649196 10 194920 195007 Pediculus humanus 121224 AAG|GTTATTATTT...TCTTCTTTTACA/TACTTATTTACA...TACAG|GGG 1 1 77.231
147771317 GT-AG 0 1.000000099473604e-05 72 PHUM601540-RA 26649196 11 195119 195190 Pediculus humanus 121224 TGG|GTAAGACATT...TTGTTTTTGTTT/ATAAAACTGACT...TACAG|CCG 1 1 80.298
147771318 GT-AG 0 0.0003355516360595 79 PHUM601540-RA 26649196 12 195367 195445 Pediculus humanus 121224 TCG|GTAAGTTTTT...AATTTTTTATTA/TAATTTTTTATT...TTCAG|ACT 0 1 85.162
147771319 GT-AG 0 1.000000099473604e-05 78 PHUM601540-RA 26649196 13 195584 195661 Pediculus humanus 121224 CAA|GTTAGTCTTC...AAAATTTTAATA/ATTAATTTTATT...TGTAG|ACT 0 1 88.975
147771320 GT-AG 0 1.000000099473604e-05 97 PHUM601540-RA 26649196 14 195860 195956 Pediculus humanus 121224 GCG|GTAAGTTAAA...TTTATTTAGATT/TTCTAGTTCACT...TCCAG|GTC 0 1 94.446
147772336 GT-AG 0 0.0001384885882398 819 PHUM601540-RA 26649196 1 190640 191458 Pediculus humanus 121224 TAA|GTAAGTTTTA...AGATTATTAATT/AGATTATTAATT...TTTAG|GAA   0 2.846

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