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)

11 rows where transcript_id = 35103489

✎ 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
197657312 GT-AG 0 0.0010591666387726 1513 rna-XM_018113912.1 35103489 1 8410166 8411678 Theobroma cacao 3641 CAG|GTTTTTTTTT...TTTGCCTTTGTG/TATCTATTAAAC...ATTAG|GTA 1 1 0.854
197657313 GT-AG 0 0.0029660832023068 258 rna-XM_018113912.1 35103489 2 8413192 8413449 Theobroma cacao 3641 CTG|GTATTGTCTC...GAGCTCTTATTT/TAGTTTCTAATC...TCCAG|GTA 2 1 33.163
197657314 GT-AG 0 1.000000099473604e-05 128 rna-XM_018113912.1 35103489 3 8414957 8415084 Theobroma cacao 3641 GAG|GTAGAAGCTA...TATTTCATAAAT/GGATATTTCATA...TTCAG|GTC 0 1 65.343
197657315 GT-AG 0 1.000000099473604e-05 241 rna-XM_018113912.1 35103489 4 8415250 8415490 Theobroma cacao 3641 CAG|GTAAGTGGCT...TTTTTGTTAGTT/CTTTTTGTTAGT...AGCAG|TTA 0 1 68.866
197657316 GT-AG 0 0.3137389952449257 103 rna-XM_018113912.1 35103489 5 8415693 8415795 Theobroma cacao 3641 CTG|GTATCTGTCT...TTGTTTTTACTG/TTTGTTTTTACT...TGTAG|GTG 1 1 73.18
197657317 GT-AG 0 1.000000099473604e-05 85 rna-XM_018113912.1 35103489 6 8415908 8415992 Theobroma cacao 3641 TAG|GTGAATATGA...TCCTTTTTATAG/TAATAACTCATA...TGCAG|GGC 2 1 75.571
197657318 GT-AG 0 1.000000099473604e-05 77 rna-XM_018113912.1 35103489 7 8416141 8416217 Theobroma cacao 3641 CAG|GTAATAGAGA...GCTGTCTTACTT/TAATGATTCACT...TGCAG|GGT 0 1 78.732
197657319 GT-AG 0 2.642602574546409e-05 117 rna-XM_018113912.1 35103489 8 8416416 8416532 Theobroma cacao 3641 CAG|GTAGATATTC...TGTATTTTGATG/TGTATTTTGATG...TTTAG|GTG 0 1 82.96
197657320 GT-AG 0 0.0003697927831474 92 rna-XM_018113912.1 35103489 9 8416812 8416903 Theobroma cacao 3641 GAG|GTAGCTAGAT...CACATTTTATTT/GCATATTTAATT...TGCAG|TAT 0 1 88.917
197657321 GT-AG 0 1.000000099473604e-05 98 rna-XM_018113912.1 35103489 10 8417066 8417163 Theobroma cacao 3641 AAG|GTACAACAAG...AAATTCTTGAAC/TGTTTCCTTACG...TGCAG|GTA 0 1 92.377
197657322 GT-AG 0 1.000000099473604e-05 389 rna-XM_018113912.1 35103489 11 8417383 8417771 Theobroma cacao 3641 CAA|GTAAGTCATT...GAATTCTCATCT/TGAATTCTCATC...TACAG|GGT 0 1 97.053

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