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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
163593834 GT-AG 0 2.327763912793928e-05 98 rna-XM_008229503.2 29376543 1 6859473 6859570 Prunus mume 102107 CAT|GTCAGTTTAC...TTATTTTTGATT/TTATTTTTGATT...TACAG|AGA 2 1 6.637
163593835 GT-AG 0 1.000000099473604e-05 247 rna-XM_008229503.2 29376543 2 6859149 6859395 Prunus mume 102107 CAG|GTACGTGTCA...TTTTTCATGATA/TTTAGTTTCATT...TTAAG|GTG 1 1 8.949
163593836 GT-AG 0 0.0002375849173824 860 rna-XM_008229503.2 29376543 3 6858013 6858872 Prunus mume 102107 TCC|GTAAGTACTT...CTCATCTTATCT/CCTTTTCTCATC...TGAAG|CTT 1 1 17.237
163593837 GT-AG 0 0.0004187238065047 112 rna-XM_008229503.2 29376543 4 6857837 6857948 Prunus mume 102107 GCC|GTAAGTTCAT...TTTTCCTTATGG/TTAATATTTATC...TACAG|ATA 2 1 19.159
163593838 GT-AG 0 0.0001241281275099 370 rna-XM_008229503.2 29376543 5 6857320 6857689 Prunus mume 102107 TGG|GTATTGATAA...CAGTTTTTGCCC/TGTATACTTATG...TGCAG|ACA 2 1 23.574
163593839 GT-AG 0 0.0007310745675357 1559 rna-XM_008229503.2 29376543 6 6855726 6857284 Prunus mume 102107 AAC|GTAAGTTTCT...TTGCTTTTGATT/TTGCTTTTGATT...TGCAG|AGT 1 1 24.625
163593840 GT-AG 0 1.000000099473604e-05 338 rna-XM_008229503.2 29376543 7 6855314 6855651 Prunus mume 102107 TTT|GTGAGTGGTC...TGAACCTTCACT/TCTGTATTGATG...TGCAG|GCT 0 1 26.847
163593841 GT-AG 0 0.0004014434024829 847 rna-XM_008229503.2 29376543 8 6853547 6854393 Prunus mume 102107 CAG|GTATGCACAT...CCATCCTCATCT/ACCATCCTCATC...TGTAG|ACT 2 1 54.474
163593842 GT-AG 0 1.8598652901853164e-05 136 rna-XM_008229503.2 29376543 9 6853114 6853249 Prunus mume 102107 TAG|GTAATTTAAC...AATTTTTTAAAG/CTTTTGCTAATT...TTCAG|CTA 2 1 63.393
163593843 GT-AG 0 1.000000099473604e-05 440 rna-XM_008229503.2 29376543 10 6852182 6852621 Prunus mume 102107 GAG|GTGGGTATTC...TTACTTTTAAAT/TTGTTTATGACT...TATAG|GGG 2 1 78.168
163593844 GT-AG 0 1.000000099473604e-05 1096 rna-XM_008229503.2 29376543 11 6850937 6852032 Prunus mume 102107 TTT|GTAAGTAGAT...CCGTCCTAATTT/TTACTTCTCACC...TTCAG|CTC 1 1 82.643
163593845 GT-AG 0 1.000000099473604e-05 113 rna-XM_008229503.2 29376543 12 6850534 6850646 Prunus mume 102107 CTG|GTAAGAATTT...GTTTTCTTCTTC/TTCCTTCCAACA...TGCAG|TGG 0 1 91.351
163593846 GT-AG 0 1.000000099473604e-05 103 rna-XM_008229503.2 29376543 13 6850300 6850402 Prunus mume 102107 AAG|GTTTGAAATA...CTTTTCTTTTTT/GATGTTATAATG...TTCAG|GTA 2 1 95.285

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