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

✎ 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
189663313 GT-AG 0 1.000000099473604e-05 65 rna-XM_016749043.1 33869901 1 1851985 1852049 Spizellomyces punctatus 109760 AAG|GTGAGAATAC...TTGATGTTATTT/ATTTCTCTCATG...GATAG|ATT 1 1 4.379
189663314 GT-AG 0 1.000000099473604e-05 67 rna-XM_016749043.1 33869901 2 1852178 1852244 Spizellomyces punctatus 109760 CAG|GTTGGTTGAT...GGTATCTTTGCA/CAGGTTCTGACG...TTTAG|GAT 0 1 7.239
189663315 GT-AG 0 1.000000099473604e-05 77 rna-XM_016749043.1 33869901 3 1852313 1852389 Spizellomyces punctatus 109760 TGG|GTATGGCATT...TGTGTCTAATAC/CTGTGTCTAATA...GGCAG|ACC 2 1 8.758
189663316 GT-AG 0 1.000000099473604e-05 69 rna-XM_016749043.1 33869901 4 1855294 1855362 Spizellomyces punctatus 109760 CGG|GTAAGTGATG...TGTTCCTTCATC/TGTTCCTTCATC...TCCAG|TTT 2 1 73.637
189663317 GT-AG 0 1.000000099473604e-05 68 rna-XM_016749043.1 33869901 5 1855481 1855548 Spizellomyces punctatus 109760 CCG|GTAAGAGGAT...GCCTTGTTAAAT/TAAATGCTAACC...TGCAG|GCT 0 1 76.273
189663318 GT-AG 0 0.2246912245981861 70 rna-XM_016749043.1 33869901 6 1855605 1855674 Spizellomyces punctatus 109760 CCA|GTATGCATCG...GAGCCCTCAATT/AGCGTGTTAATC...TTTAG|ATG 2 1 77.525
189663319 GT-AG 0 2.3709415434577587e-05 58 rna-XM_016749043.1 33869901 7 1855778 1855835 Spizellomyces punctatus 109760 GAT|GTACGTGACT...CTGACCATGACA/CACTATCTGACC...CATAG|GAC 0 1 79.826
189663320 GT-AG 0 0.0007181696899086 66 rna-XM_016749043.1 33869901 8 1856092 1856157 Spizellomyces punctatus 109760 AAG|GTACGTTTGT...TTCCTTTTGACA/TTCCTTTTGACA...TGTAG|GTT 1 1 85.545
189663321 GT-AG 0 0.0039247153762616 70 rna-XM_016749043.1 33869901 9 1856331 1856400 Spizellomyces punctatus 109760 ATG|GTATGTCTTT...AGATCGTTAATG/TGGAAGCTGATA...TCTAG|ATC 0 1 89.41
189663322 GT-AG 0 1.000000099473604e-05 59 rna-XM_016749043.1 33869901 10 1856462 1856520 Spizellomyces punctatus 109760 CAG|GTTCGTTTAT...TAGCCATTATTT/CTAATGATGACT...ATTAG|GTG 1 1 90.773
189663323 GT-AG 0 1.000000099473604e-05 64 rna-XM_016749043.1 33869901 11 1856590 1856653 Spizellomyces punctatus 109760 AAG|GTTGTTAAAA...ATCTTCTTGGTG/GTGATATTCATC...ATTAG|TCC 1 1 92.315
189663324 GT-AG 0 0.0014392044965529 66 rna-XM_016749043.1 33869901 12 1856756 1856821 Spizellomyces punctatus 109760 CCG|GTATGTCTTC...CTCGTATTAGCA/TCGAAACTTACG...TCTAG|ATG 1 1 94.593
189663325 GT-AG 0 1.000000099473604e-05 64 rna-XM_016749043.1 33869901 13 1856967 1857030 Spizellomyces punctatus 109760 AAT|GTGTGTGCTT...TTTGTTTCAATA/TATTGACTAATT...CTTAG|ACT 2 1 97.833

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