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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
33379247 GT-AG 0 1.000000099473604e-05 1276 rna-XM_030634128.1 6439299 1 86380519 86381794 Cannabis sativa 3483 CAG|GTAATGGTTT...ACATTCTTATAT/TACATTCTTATA...TGCAG|CCA 0 1 2.982
33379248 GT-AG 0 0.0742812294599852 119 rna-XM_030634128.1 6439299 2 86379071 86379189 Cannabis sativa 3483 AAG|GTTTCCAAAT...TATTTTTTAATA/TATTTTTTAATA...TACAG|AAA 0 1 22.412
33379249 GC-AG 0 0.0003127647860967 182 rna-XM_030634128.1 6439299 3 86377548 86377729 Cannabis sativa 3483 CAG|GCATGCTTTT...CTTTTTTTATTG/TCTTTTTTTATT...AATAG|GGT 0 1 42.018
33379250 GT-AG 0 1.000000099473604e-05 468 rna-XM_030634128.1 6439299 4 86376967 86377434 Cannabis sativa 3483 CAA|GTGAGATGGT...TGTTTCTTATGT/CTGTTTCTTATG...ACCAG|GTA 2 1 43.67
33379251 GT-AG 0 0.0007863111635205 127 rna-XM_030634128.1 6439299 5 86376752 86376878 Cannabis sativa 3483 CTT|GTAGGTTGCT...TTTCTTTTAAAC/TTTCTTTTAAAC...TGCAG|GTT 0 1 44.956
33379252 GT-AG 0 1.000000099473604e-05 141 rna-XM_030634128.1 6439299 6 86376524 86376664 Cannabis sativa 3483 CAG|GTTTTGAGCC...CATTTTTCAACT/CACATTTTCATT...TGAAG|GTA 0 1 46.228
33379253 GT-AG 0 1.000000099473604e-05 137 rna-XM_030634128.1 6439299 7 86376294 86376430 Cannabis sativa 3483 AAG|GTTAGTTACA...ATTTTCTTACCA/TATTTTCTTACC...TGCAG|AGT 0 1 47.588
33379254 GT-AG 0 1.000000099473604e-05 77 rna-XM_030634128.1 6439299 8 86376133 86376209 Cannabis sativa 3483 CAG|GTAAGAAATA...GGTTTCTTTACG/CTTTTTCTGATT...ATTAG|GAG 0 1 48.816
33379255 GT-AG 0 0.0002964134344937 719 rna-XM_030634128.1 6439299 9 86375210 86375928 Cannabis sativa 3483 CAG|GTACATTAAA...GGTTTTTTGATT/GGTTTTTTGATT...TGCAG|AAC 0 1 51.798
33379256 GT-AG 0 1.000000099473604e-05 79 rna-XM_030634128.1 6439299 10 86374888 86374966 Cannabis sativa 3483 AAG|GTTGGCTTTT...TCTTTCTCATTT/TTCTTTCTCATT...TTCAG|GTT 0 1 55.351
33379257 GT-AG 0 0.0006775330964676 90 rna-XM_030634128.1 6439299 11 86373223 86373312 Cannabis sativa 3483 CTT|GTAAGCAACT...GTCTCTTTGATG/TTCTGTTTAATT...TGCAG|ACA 0 1 78.377
33379258 GT-AG 0 0.0048086323901044 447 rna-XM_030634128.1 6439299 12 86372197 86372643 Cannabis sativa 3483 AGG|GTATGTACTG...TTACTCTTAATG/ATTACTCTTAAT...TGCAG|TGC 0 1 86.842
33379259 GT-AG 0 1.000000099473604e-05 253 rna-XM_030634128.1 6439299 13 86371692 86371944 Cannabis sativa 3483 GAG|GTAATGCCTT...TGGTCTCTAATA/TAATTACTAATG...CCCAG|GTA 0 1 90.526

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