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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
163479065 GT-AG 0 1.000000099473604e-05 1139 rna-XM_034361390.1 29350684 1 11049237 11050375 Prunus dulcis 3755 ATT|GTAAGGGCAT...TATTTCTGATCT/ATATTTCTGATC...GCAAG|GAT 0 1 1.647
163479066 GT-AG 0 1.000000099473604e-05 114 rna-XM_034361390.1 29350684 2 11049050 11049163 Prunus dulcis 3755 TGG|GTAAGTGACA...TTGACTTTATTG/GGTATATTGACT...GTCAG|GGC 1 1 2.731
163479067 GT-AG 0 0.005162960380701 87 rna-XM_034361390.1 29350684 3 11048838 11048924 Prunus dulcis 3755 GAG|GTATATTGAA...TATATTTTAGTT/GTATATTTTAGT...TACAG|GGT 0 1 4.586
163479068 GT-AG 0 1.000000099473604e-05 108 rna-XM_034361390.1 29350684 4 11048337 11048444 Prunus dulcis 3755 CAG|GTAAGGTCAG...TTTTTTTTGTTT/GTTGCATTCATG...AACAG|GTT 0 1 10.419
163479069 GT-AG 0 0.0049611196708436 295 rna-XM_034361390.1 29350684 5 11046759 11047053 Prunus dulcis 3755 GCT|GTAAGCTTCC...GGTGCCTTTTCA/TGCCTTTTCACT...TGTAG|GCC 2 1 29.46
163479070 GT-AG 0 7.554359502655562e-05 108 rna-XM_034361390.1 29350684 6 11046217 11046324 Prunus dulcis 3755 GAG|GTATGTAATT...ATTTATTTATTT/TATTTATTTATT...TGCAG|GTG 1 1 35.901
163479071 GT-AG 0 0.2522401424188724 95 rna-XM_034361390.1 29350684 7 11044128 11044222 Prunus dulcis 3755 AAG|GTTTCTTCTT...GTTCTCTTAATC/GTTCTCTTAATC...TGTAG|GAC 0 1 65.494
163479072 GT-AG 0 4.063590506680229e-05 1582 rna-XM_034361390.1 29350684 8 11042388 11043969 Prunus dulcis 3755 CGA|GTAAGTTAAA...AACCTTTTGAAT/TCTGTGCTGAAC...CACAG|ATT 2 1 67.839
163479073 GT-AG 0 1.000000099473604e-05 244 rna-XM_034361390.1 29350684 9 11041983 11042226 Prunus dulcis 3755 CAG|GTAATGGAGC...TCTCTTTTAAAA/TCTCTTTTAAAA...TTTAG|GTG 1 1 70.229
163479074 GT-AG 0 0.0001438611677137 582 rna-XM_034361390.1 29350684 10 11041243 11041824 Prunus dulcis 3755 TTT|GTAAGTTGAT...ATAGTTTTACCA/CATAGTTTTACC...TGCAG|ACA 0 1 72.573
163500780 GT-AG 0 1.000000099473604e-05 111 rna-XM_034361390.1 29350684 11 11040311 11040421 Prunus dulcis 3755 CAG|GTACGTAATC...GATTTTTTATGT/GGATTTTTTATG...TGTAG|GTG   0 84.758
163500781 GT-AG 0 0.0007631380353195 238 rna-XM_034361390.1 29350684 12 11039367 11039604 Prunus dulcis 3755 TAA|GTAAGTTTTT...GTTCTTTTATCA/TGTTCTTTTATC...AGCAG|GAT   0 95.236

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