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)

12 rows where transcript_id = 33869883

✎ 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
189663046 GT-AG 0 5.021764840445341 61 rna-XM_016749013.1 33869883 1 1785957 1786017 Spizellomyces punctatus 109760 CAG|GTATCCTATT...TGACCCTCAAAA/GCTCTTCTGACC...CATAG|TCC 0 1 2.135
189663047 GT-AG 0 1.000000099473604e-05 66 rna-XM_016749013.1 33869883 2 1784854 1784919 Spizellomyces punctatus 109760 CAG|GTAAGTACGA...CCGATTCTAACA/CCGATTCTAACA...TTCAG|TCA 2 1 16.062
189663048 GT-AG 0 1.000000099473604e-05 75 rna-XM_016749013.1 33869883 3 1783482 1783556 Spizellomyces punctatus 109760 AAG|GTGCGAATGC...ATAAATTTGATC/TAGGTACTAACA...GATAG|ATT 0 1 33.481
189663049 GT-AG 0 0.0009037194631196 68 rna-XM_016749013.1 33869883 4 1783362 1783429 Spizellomyces punctatus 109760 AAG|GTTTGCATTC...AATGTCTTATTC/TAATGTCTTATT...GCTAG|ATG 1 1 34.179
189663050 GT-AG 0 2.326089079519573e-05 72 rna-XM_016749013.1 33869883 5 1783187 1783258 Spizellomyces punctatus 109760 TGG|GTAATATTCA...GATCTTTTATAC/TGATCTTTTATA...CACAG|ACT 2 1 35.563
189663051 GT-AG 0 1.000000099473604e-05 62 rna-XM_016749013.1 33869883 6 1782807 1782868 Spizellomyces punctatus 109760 CAA|GTAAGTGGGC...AGTTGCTAAACG/AAGTTGCTAAAC...GCCAG|CGT 2 1 39.833
189663052 GT-AG 0 1.000000099473604e-05 72 rna-XM_016749013.1 33869883 7 1780626 1780697 Spizellomyces punctatus 109760 CTG|GTAAGGAGAG...TGTACTTTATCT/ATGTACTTTATC...GGTAG|GCG 2 1 68.157
189663053 GT-AG 0 1.000000099473604e-05 86 rna-XM_016749013.1 33869883 8 1780470 1780555 Spizellomyces punctatus 109760 CAG|GTAAGATGAA...TTCGTCTTACCA/ATTCGTCTTACC...TCCAG|CTC 0 1 69.098
189663054 GT-AG 0 1.000000099473604e-05 71 rna-XM_016749013.1 33869883 9 1779023 1779093 Spizellomyces punctatus 109760 TAG|GTGAGTGGAT...CTTTCTTTTGCT/CGGTATTTGAAC...TTCAG|TAC 2 1 87.577
189663055 GT-AG 0 1.000000099473604e-05 61 rna-XM_016749013.1 33869883 10 1778890 1778950 Spizellomyces punctatus 109760 AAT|GTGAGTACCA...AGAGCCTGAACT/CCTGAACTAAAA...TGCAG|TGC 2 1 88.544
189663056 GT-AG 0 9.868950642940208e-05 82 rna-XM_016749013.1 33869883 11 1778325 1778406 Spizellomyces punctatus 109760 CAT|GTACGTACCG...AACGTCTTGTTT/GGATTACTCAAC...CACAG|AAG 2 1 95.031
189663057 GT-AG 0 1.000000099473604e-05 64 rna-XM_016749013.1 33869883 12 1778207 1778270 Spizellomyces punctatus 109760 CAC|GTAAGTGGCA...CAACCTCTAACC/CAACCTCTAACC...AACAG|GAC 2 1 95.756

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