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)

11 rows where transcript_id = 4310140

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
22389674 GT-AG 0 1.000000099473604e-05 30 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 1 18105 18134 Blastocystis sp. subtype 1 944036 TAT|GTGAAGCTGG...GTTTCCCCATCT/CCCCATCTAACA...AGTAG|GGA 2 1 5.868
22389675 GT-AG 0 0.0002554562808754 32 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 2 18179 18210 Blastocystis sp. subtype 1 944036 GAA|GTATGGAGTT...GCTGTCTCGATA/GTCTCGATAACG...CTAAG|AAA 1 1 8.037
22389676 GT-AG 0 0.0007042502663232 32 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 3 18369 18400 Blastocystis sp. subtype 1 944036 AAT|GTGCCTGTCG...GTTCTCTTGCAT/TTGCATATAATG...AGTAG|GAC 0 1 15.828
22389677 GT-AG 0 1.000000099473604e-05 30 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 4 18504 18533 Blastocystis sp. subtype 1 944036 TTA|GTCCAGATGG...GTTGGCTCAATT/GCTCAATTCATA...TGTAG|TCA 1 1 20.907
22389678 GT-AG 0 0.0036810438965148 31 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 5 18612 18642 Blastocystis sp. subtype 1 944036 ACT|GTATGTCTAT...ATTGCTATCACA/ATTGCTATCACA...ACTAG|ATT 1 1 24.753
22389679 GT-AG 0 1.000000099473604e-05 30 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 6 18786 18815 Blastocystis sp. subtype 1 944036 CGA|GTGGTCCAGC...TGATGCGAATCA/ATGCGAATCACG...ATTAG|GAC 0 1 31.805
22389680 GT-AG 0 0.0342606148399533 32 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 7 18938 18969 Blastocystis sp. subtype 1 944036 AAT|GTGCCCGTTT...TTCTCCTTCAAT/TTCTCCTTCAAT...TCTAG|TCT 2 1 37.821
22389681 GT-AG 0 1.000000099473604e-05 30 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 8 19084 19113 Blastocystis sp. subtype 1 944036 GCG|GTGGGCGATT...TGTAGAGTATCA/TAGAGTATCAAA...ATCAG|GGC 2 1 43.442
22389682 GT-AG 0 0.0861417243427899 30 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 9 19249 19278 Blastocystis sp. subtype 1 944036 ACT|GTACCCGCGG...TCGGTGCTAATC/TCGGTGCTAATC...CGCAG|ACT 2 1 50.099
22389683 GT-AG 0 1.000000099473604e-05 29 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 10 19469 19497 Blastocystis sp. subtype 1 944036 GAT|GTGAGTGCTG...GTGGCGGTCGAG/GTGGCGGTCGAG...CGTAG|ATG 0 1 59.467
22389684 GT-AG 0 1.000000099473604e-05 30 rna-gnl|WGS:LXWW|t.AV274_0068 4310140 11 19745 19774 Blastocystis sp. subtype 1 944036 CGG|GTGAGAGAGA...GAGATGGGAGTG/ATGGGAGTGAGG...CGAAG|CGA 1 1 71.647

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