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

✎ 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
156032849 GT-AG 0 1.000000099473604e-05 86 rna22.p1 28131453 1 47230 47315 Planoprotostelium fungivorum 1890364 TTT|GTGAGAGGAG...TATCTCGTAATT/TATCTCGTAATT...TCCAG|GAA 0 1 0.285
156032850 GT-AG 0 2.5369196318114272e-05 47 rna22.p1 28131453 2 47012 47058 Planoprotostelium fungivorum 1890364 AGG|GTGCCGATCC...CAATTCTAAATT/GCAATTCTAAAT...TGCAG|GTA 0 1 8.417
156032851 GT-AG 0 1.000000099473604e-05 50 rna22.p1 28131453 3 46770 46819 Planoprotostelium fungivorum 1890364 GAG|GTGATGCTTG...TTGATCTTGTCG/GGACTTCTGACC...ACCAG|ATC 0 1 17.546
156032852 GT-AG 0 1.000000099473604e-05 39 rna22.p1 28131453 4 46593 46631 Planoprotostelium fungivorum 1890364 GGG|GTGGGTCGAC...ATGTTTTTAAAT/TTTAAATTCACA...TGCAG|GAG 0 1 24.108
156032853 GT-AG 0 1.000000099473604e-05 38 rna22.p1 28131453 5 46390 46427 Planoprotostelium fungivorum 1890364 CAA|GTAAAGGACT...TTCACATTGACA/TCAATCTTCACA...AATAG|ATT 0 1 31.954
156032854 GT-AG 0 1.000000099473604e-05 39 rna22.p1 28131453 6 46268 46306 Planoprotostelium fungivorum 1890364 GTG|GTGAATGGAC...ATCCCTCTGATG/TGATGATTCATA...AACAG|GAG 2 1 35.901
156032855 GT-AG 0 1.000000099473604e-05 35 rna22.p1 28131453 7 46184 46218 Planoprotostelium fungivorum 1890364 CCA|GTGAGTTCAT...ATCCATTTGACA/ATCCATTTGACA...TATAG|AAG 0 1 38.231
156032856 GT-AG 0 1.000000099473604e-05 38 rna22.p1 28131453 8 46076 46113 Planoprotostelium fungivorum 1890364 ATA|GTGAGAAGGA...TGGACATTGAAA/TGGACATTGAAA...AGCAG|GCA 1 1 41.56
156032857 GT-AG 0 1.000000099473604e-05 39 rna22.p1 28131453 9 45789 45827 Planoprotostelium fungivorum 1890364 GAG|GTGATATCTA...CCAATCTTACGT/TCCAATCTTACG...TTCAG|GTT 0 1 53.352
156032858 GT-AG 0 1.000000099473604e-05 37 rna22.p1 28131453 10 45494 45530 Planoprotostelium fungivorum 1890364 GAG|GTACTATCGT...CATGTCTAACAT/TCATGTCTAACA...CGCAG|GCC 0 1 65.621
156032859 GT-AG 0 1.000000099473604e-05 36 rna22.p1 28131453 11 45380 45415 Planoprotostelium fungivorum 1890364 ATG|GTGGTTTGAG...TTTTCTTGGACT/CTTGGACTGAGA...CGCAG|GTA 0 1 69.33
156032860 GT-AG 0 1.000000099473604e-05 43 rna22.p1 28131453 12 45286 45328 Planoprotostelium fungivorum 1890364 TCA|GTGAGAATTT...AAGAATTTGACT/AAGAATTTGACT...GTCAG|GTT 0 1 71.755
156032861 GT-AG 0 1.000000099473604e-05 46 rna22.p1 28131453 13 45008 45053 Planoprotostelium fungivorum 1890364 CGA|GTGAGGGCGA...AAGTTGTTGACA/AAGTTGTTGACA...GATAG|GTC 1 1 82.786
156032862 GT-AG 0 1.000000099473604e-05 36 rna22.p1 28131453 14 44706 44741 Planoprotostelium fungivorum 1890364 GCG|GTGAGTGACC...TGAATCGTAACC/TGAATCGTAACC...TTCAG|ACG 0 1 95.435

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