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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
188654109 GT-AG 0 0.0730407001805314 361 Sphmag20G001600.1.v1.1 33668862 1 739788 740148 Sphagnum magellanicum 128215 AAG|GTATGCTGCA...ACATCTTTAATA/ACATCTTTAATA...TGCAG|AGA 0 1 7.748
188654110 GT-AG 0 0.0001604386764977 188 Sphmag20G001600.1.v1.1 33668862 2 740284 740471 Sphagnum magellanicum 128215 ATG|GTATGTGCCT...ATTTGCTTATTA/AATTTGCTTATT...CACAG|GCT 0 1 12.397
188654111 GT-AG 0 0.000187217417682 234 Sphmag20G001600.1.v1.1 33668862 3 740623 740856 Sphagnum magellanicum 128215 GAT|GTATGAAACC...AGTTCTCTGACA/TCTAAATTTACC...AGCAG|TGA 1 1 17.596
188654112 GT-AG 0 1.000000099473604e-05 307 Sphmag20G001600.1.v1.1 33668862 4 740946 741252 Sphagnum magellanicum 128215 AAG|GTGGGGTTCT...TGGGTTTTATTC/TTGGGTTTTATT...TGCAG|CCA 0 1 20.661
188654113 GC-AG 0 1.000000099473604e-05 232 Sphmag20G001600.1.v1.1 33668862 5 741310 741541 Sphagnum magellanicum 128215 AAG|GCATGTGCTC...CGCATATTGATG/CGCATATTGATG...TGCAG|GCA 0 1 22.624
188654114 GT-AG 0 1.000000099473604e-05 197 Sphmag20G001600.1.v1.1 33668862 6 741755 741951 Sphagnum magellanicum 128215 AAG|GTGAAAATTT...TTTTTTGTATCT/GAGGTACTGATT...ACCAG|TAC 0 1 29.959
188654115 GT-AG 0 0.0004566410062065 217 Sphmag20G001600.1.v1.1 33668862 7 742087 742303 Sphagnum magellanicum 128215 GAG|GTATGTGCTA...CTTGCCTTCACT/CCTTCACTGATT...TCCAG|AAA 0 1 34.607
188654116 GT-AG 0 0.0050242003108432 332 Sphmag20G001600.1.v1.1 33668862 8 742997 743328 Sphagnum magellanicum 128215 CAG|GTATCAGTTT...TTTTCCTATGTT/ATGCTAGTAACT...ATCAG|GTC 0 1 58.471
188654117 GT-AG 0 1.000000099473604e-05 235 Sphmag20G001600.1.v1.1 33668862 9 743522 743756 Sphagnum magellanicum 128215 TAG|GTCAGGTGCA...AGTTGCTGACCT/GAGTTGCTGACC...TGCAG|AGG 1 1 65.117
188654118 GT-AG 0 1.000000099473604e-05 224 Sphmag20G001600.1.v1.1 33668862 10 743954 744177 Sphagnum magellanicum 128215 TCG|GTAATGGTTC...TCACATTTAATC/ATAGGGTTAATC...TGTAG|GTC 0 1 71.901
188654119 GT-AG 0 1.000000099473604e-05 189 Sphmag20G001600.1.v1.1 33668862 11 744292 744480 Sphagnum magellanicum 128215 CTG|GTAAGATCAC...CTTTTCTTATTT/ACTTTTCTTATT...TGCAG|AAC 0 1 75.826
188654120 GT-AG 0 1.000000099473604e-05 350 Sphmag20G001600.1.v1.1 33668862 12 744636 744985 Sphagnum magellanicum 128215 CAG|GTTGAGTTCT...TGGTCTTTATTA/CTGGTCTTTATT...TGCAG|AGT 2 1 81.164
188654121 GT-AG 0 0.0156725472572441 188 Sphmag20G001600.1.v1.1 33668862 13 745265 745452 Sphagnum magellanicum 128215 GAA|GTAAGCTTTT...CTGACCTTGAAT/AATTTGCTGACC...CACAG|TTA 2 1 90.771

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