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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
163356658 GT-AG 0 4.577077561374651e-05 106 rna-XM_021952974.1 29320825 3 413719 413824 Prunus avium 42229 CAG|GTCCATTTGT...TGAGCTTTAATC/TTTAATCTTACT...TTCAG|GAG 0 1 26.151
163356659 GT-AG 0 1.4267180818356869e-05 88 rna-XM_021952974.1 29320825 4 413882 413969 Prunus avium 42229 CAG|GTTTTATATT...GTTGTTTTAGAT/TTGAAATTTATT...AACAG|GCA 0 1 29.795
163356660 GT-AG 0 0.0001305271302348 1090 rna-XM_021952974.1 29320825 5 414045 415134 Prunus avium 42229 CAG|GTATATGCGT...AAGCTTTTAAAT/TCATTTCTAATA...TTCAG|CAT 0 1 34.591
163356661 GT-AG 0 6.616643029403484e-05 103 rna-XM_021952974.1 29320825 6 415225 415327 Prunus avium 42229 CCG|GTAATTTCTT...ATTCTCTGGATG/ATGGCACTAATA...AACAG|GGA 0 1 40.345
163356662 GT-AG 0 0.0001598233576296 90 rna-XM_021952974.1 29320825 7 415388 415477 Prunus avium 42229 TCT|GTAAGTGTCT...ATTTCTTTATTC/TCTTTATTCATT...CTTAG|GGT 0 1 44.182
163356663 GT-AG 0 0.0468795930057827 503 rna-XM_021952974.1 29320825 8 415648 416150 Prunus avium 42229 AAG|GTATACTGAT...TGTATTTTGATA/TGTATTTTGATA...TGCAG|TGC 2 1 55.051
163356664 GT-AG 0 9.126033908079344e-05 2395 rna-XM_021952974.1 29320825 9 416206 418600 Prunus avium 42229 AGT|GTAAGTTCCA...TATTCCTTTTTT/AACATTCTCATT...TGTAG|GAC 0 1 58.568
163356665 GT-AG 0 1.000000099473604e-05 77 rna-XM_021952974.1 29320825 10 418644 418720 Prunus avium 42229 AAG|GTTTGATTAT...AGATTTTTACTA/GAGATTTTTACT...TGCAG|GTG 1 1 61.317
163356666 GT-AG 0 1.000000099473604e-05 820 rna-XM_021952974.1 29320825 11 419008 419827 Prunus avium 42229 CAA|GTTAATCTCT...TTGTCTTTATCA/TTTGTCTTTATC...CTCAG|GAT 0 1 79.668
163356667 GT-AG 0 1.000000099473604e-05 92 rna-XM_021952974.1 29320825 12 419906 419997 Prunus avium 42229 CAG|GTAATGATGT...ATGGCCTCAACG/TATGGCCTCAAC...GTTAG|GCG 0 1 84.655
163356668 GT-AG 0 2.798188958597112e-05 752 rna-XM_021952974.1 29320825 13 420124 420875 Prunus avium 42229 AAG|GTAACATCCA...GCTATTTTGTTT/CCGAAGTTAAAC...TACAG|GAG 0 1 92.711
163356670 GT-AG 0 2.2896673359625456e-05 623 rna-XM_021952974.1 29320825 1 412412 413034 Prunus avium 42229 TGA|GTAAGTATGG...ATGCATTTGACT/ATGCATTTGACT...TGCAG|TAC   0 15.345
163356671 GT-AG 0 1.000000099473604e-05 418 rna-XM_021952974.1 29320825 2 413129 413546 Prunus avium 42229 AAG|GTAGTACCTC...TGTACTTCATCT/CTTCATCTCACA...CTCAG|ACA   0 21.355

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