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)

10 rows where transcript_id = 26241406

✎ 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
145216523 GT-AG 0 0.0002909507545636 4344 rna-gnl|WGS:LUCH|PHET_00057 26241406 1 177705 182048 Paragonimus heterotremus 100268 AAG|GTAAACTAGA...GATGTCTTACTT/CGATGTCTTACT...AACAG|AAC 1 1 9.652
145216524 GT-AG 0 2.623939219403658e-05 2600 rna-gnl|WGS:LUCH|PHET_00057 26241406 2 174751 177350 Paragonimus heterotremus 100268 CAG|GTAGCAAACG...TAAGTCTTTGCA/AGTTTGTTCAGT...TCAAG|TTA 1 1 21.855
145216525 GT-AG 0 1.000000099473604e-05 470 rna-gnl|WGS:LUCH|PHET_00057 26241406 3 174001 174470 Paragonimus heterotremus 100268 GAG|GTAATATTTC...CGTTTCATAATC/TTTCGTTTCATA...TTCAG|GTA 2 1 31.506
145216526 GT-AG 0 1.000000099473604e-05 1651 rna-gnl|WGS:LUCH|PHET_00057 26241406 4 172210 173860 Paragonimus heterotremus 100268 TCG|GTGAGTCTGT...TGTCCCAAAATG/GATGAAATCACT...TTTAG|AAT 1 1 36.332
145216527 GT-AG 0 1.4796058003124034e-05 5970 rna-gnl|WGS:LUCH|PHET_00057 26241406 5 166069 172038 Paragonimus heterotremus 100268 CTA|GTAAGTCATA...TTCTGTTTGATT/ATAATATTCACC...TTTAG|ACC 1 1 42.227
145216528 GT-AG 0 1.000000099473604e-05 3634 rna-gnl|WGS:LUCH|PHET_00057 26241406 6 162104 165737 Paragonimus heterotremus 100268 CAG|GTTAGTCTAT...CGGTTCTTAACA/ATTATGTTCAAT...TACAG|TCA 2 1 53.637
145216529 GT-AG 0 1.000000099473604e-05 2307 rna-gnl|WGS:LUCH|PHET_00057 26241406 7 159576 161882 Paragonimus heterotremus 100268 GTG|GTAAGCCAAA...CAGCTGTTATCC/GTTCAACTTATA...TCCAG|ATA 1 1 61.255
145216530 GT-AG 0 1.000000099473604e-05 3117 rna-gnl|WGS:LUCH|PHET_00057 26241406 8 156399 159515 Paragonimus heterotremus 100268 CAA|GTAAGGTTTG...AATGTTTTACAT/AAATGTTTTACA...CCAAG|GGG 1 1 63.323
145216531 GT-AG 0 4.782561462636492e-05 964 rna-gnl|WGS:LUCH|PHET_00057 26241406 9 155087 156050 Paragonimus heterotremus 100268 TTG|GTAAGCGTTA...TAATCCTGAATC/TATATTTTTATA...TACAG|ATT 1 1 75.319
145216532 GT-AG 0 1.000000099473604e-05 13042 rna-gnl|WGS:LUCH|PHET_00057 26241406 10 141683 154724 Paragonimus heterotremus 100268 GCG|GTAAGTCCGG...TTTTGTTTGACT/TTTTGTTTGACT...CACAG|ACT 0 1 87.797

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