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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
55033634 GT-AG 0 5.831232079124668e-05 1040 rna-XM_008459959.2 10007580 1 1179452 1180491 Cucumis melo 3656 CAG|GTTTGTTTCC...TCATCTTTCTCC/GCAGTACTGACC...TGCAG|TAT 0 1 8.234
55033635 GC-AG 0 6.187148731147097e-05 95 rna-XM_008459959.2 10007580 2 1179282 1179376 Cucumis melo 3656 TCG|GCATGTCTAT...TTTTCTTTCATT/TTTTCTTTCATT...TACAG|CCT 0 1 11.217
55033636 GT-AG 0 1.000000099473604e-05 487 rna-XM_008459959.2 10007580 3 1178687 1179173 Cucumis melo 3656 AAT|GTGAGTAGCA...TTTAACTTAGTT/GTTATATTCACA...TGCAG|AAA 0 1 15.513
55033637 GT-AG 0 1.000000099473604e-05 103 rna-XM_008459959.2 10007580 4 1178551 1178653 Cucumis melo 3656 ATT|GTGAGTATAC...AAATGCTTAACT/TCATAACTCATA...TGTAG|GAA 0 1 16.826
55033638 GT-AG 0 1.000000099473604e-05 450 rna-XM_008459959.2 10007580 5 1178011 1178460 Cucumis melo 3656 GAG|GTCGGTCTCT...GTTTTCTCATTG/AGTTTTCTCATT...GACAG|AGA 0 1 20.406
55033639 GT-AG 0 5.844464545265149e-05 434 rna-XM_008459959.2 10007580 6 1177451 1177884 Cucumis melo 3656 GAT|GTAAGTTTAA...GTTGTTTGGATT/TAAAATTTCATC...TACAG|CTT 0 1 25.418
55033640 GT-AG 0 0.2202046663199441 203 rna-XM_008459959.2 10007580 7 1177104 1177306 Cucumis melo 3656 CTG|GTATATTTCT...GTCGCTTTAACA/GTCGCTTTAACA...TGCAG|GTT 0 1 31.146
55033641 GT-AG 0 3.944197673154932e-05 340 rna-XM_008459959.2 10007580 8 1176341 1176680 Cucumis melo 3656 AAG|GTATAAAGTT...GAGTTTTCAACC/TGAGTTTTCAAC...ACCAG|ATG 0 1 47.971
55033642 GT-AG 0 1.000000099473604e-05 839 rna-XM_008459959.2 10007580 9 1175367 1176205 Cucumis melo 3656 GAG|GTAAAACCCT...TATCCCATATCC/CCGTGCTTCATA...TGCAG|CTG 0 1 53.341
55033643 GT-AG 0 0.0372962170099107 107 rna-XM_008459959.2 10007580 10 1175041 1175147 Cucumis melo 3656 AAG|GTAGCTTTAT...TACCTTTTAACG/TACCTTTTAACG...TTCAG|GCT 0 1 62.053
55033644 GT-AG 0 0.0056509150910425 122 rna-XM_008459959.2 10007580 11 1174646 1174767 Cucumis melo 3656 AAG|GTAGCCAGTC...TGCTTGTTGACA/CATGATTTGATT...CACAG|GGC 0 1 72.912
55033645 GT-AG 0 0.2476398514770532 88 rna-XM_008459959.2 10007580 12 1174420 1174507 Cucumis melo 3656 AAG|GTATCATTCA...TCTTTTTTAGAT/TTCTTTTTTAGA...TGCAG|GTC 0 1 78.401
55033646 GT-AG 0 1.000000099473604e-05 496 rna-XM_008459959.2 10007580 13 1173603 1174098 Cucumis melo 3656 CAG|GTCAGTGTAC...AACTTCTTGACA/AACTTCTTGACA...TGCAG|ATG 0 1 91.169

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