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

✎ 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
188654009 GT-AG 0 6.257462738891475e-05 1061 Sphmag20G001000.1.v1.1 33668852 1 582206 583266 Sphagnum magellanicum 128215 GAG|GTACTAATTC...TGCGTCTTAACA/AACATCCTAACA...TACAG|GGG 0 1 2.427
188654010 GT-AG 0 1.000000099473604e-05 634 Sphmag20G001000.1.v1.1 33668852 2 581467 582100 Sphagnum magellanicum 128215 AAG|GTGATGTATC...TGAAACTTGACT/GCATTGTTAATT...TGTAG|GTG 0 1 3.53
188654011 GT-AG 0 2.890314925677538e-05 325 Sphmag20G001000.1.v1.1 33668852 3 578706 579030 Sphagnum magellanicum 128215 AAG|GTAAACCGTT...TGGATTTTAATT/TGGATTTTAATT...AATAG|GGT 0 1 29.121
188654012 GT-AG 0 3.822336231941943e-05 677 Sphmag20G001000.1.v1.1 33668852 4 577853 578529 Sphagnum magellanicum 128215 CAA|GTAATTATTC...CTCACTCTAACA/TCATGGCTCACT...TGTAG|AAA 2 1 30.97
188654013 GT-AG 0 1.000000099473604e-05 887 Sphmag20G001000.1.v1.1 33668852 5 576800 577686 Sphagnum magellanicum 128215 ATT|GTAAAAGTAG...TTCTATTTGATC/TTCTATTTGATC...TGCAG|GTA 0 1 32.714
188654014 GT-AG 0 1.000000099473604e-05 847 Sphmag20G001000.1.v1.1 33668852 6 575650 576496 Sphagnum magellanicum 128215 AAG|GTGTGAATCT...GTGTCATTGATC/ATTGATCTGACA...CACAG|GTG 0 1 35.897
188654015 GT-AG 0 1.000000099473604e-05 420 Sphmag20G001000.1.v1.1 33668852 7 574154 574573 Sphagnum magellanicum 128215 CAG|GTTAGTTGAA...GGGTTTATAACA/TGTAGGCTAATG...TATAG|GTA 2 1 47.2
188654016 GT-AG 0 0.0002899845635302 509 Sphmag20G001000.1.v1.1 33668852 8 571923 572431 Sphagnum magellanicum 128215 TAG|GTATATATGA...GCTATCATAAGA/CATGCTATCATA...CGCAG|ATG 2 1 65.29
188654017 GT-AG 0 0.0899765513991717 1103 Sphmag20G001000.1.v1.1 33668852 9 569988 571090 Sphagnum magellanicum 128215 CGA|GTATGCATAA...AATGTTTTATTA/TTAAATTTAATT...AATAG|GTA 0 1 74.031
188654018 GT-AG 0 1.000000099473604e-05 1267 Sphmag20G001000.1.v1.1 33668852 10 568277 569543 Sphagnum magellanicum 128215 CAT|GTTAGTTTTC...TTTCTCTGAAAT/CTTTCTCTGAAA...TGTAG|GTG 0 1 78.695
188654019 GT-AG 0 0.0992080728984613 456 Sphmag20G001000.1.v1.1 33668852 11 567698 568153 Sphagnum magellanicum 128215 TCT|GTAACTTATC...TTCACCTTCTTG/TGTAAGCTGATT...TGCAG|GTT 0 1 79.987
188654020 GT-AG 0 1.000000099473604e-05 588 Sphmag20G001000.1.v1.1 33668852 12 566909 567496 Sphagnum magellanicum 128215 CAG|GTTGTACTCT...GAAGTCTTACAA/CAACTACTCACC...AACAG|GTT 0 1 82.099
188654021 GT-AG 0 4.440921550914099e-05 172 Sphmag20G001000.1.v1.1 33668852 13 565771 565942 Sphagnum magellanicum 128215 GAG|GTTTGCAGTT...CACTTGTTAATT/TGTGAACTCACT...AACAG|GTG 0 1 92.247

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