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

✎ 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
67905323 GT-AG 0 1.000000099473604e-05 113 rna-XM_022879031.1 12758655 1 3588874 3588986 Durio zibethinus 66656 AAG|GTTAGTTTGC...ATTTGCTTAATC/ATTTGCTTAATC...TGCAG|ATT 0 1 31.26
67905324 GT-AG 0 0.0376656743252311 323 rna-XM_022879031.1 12758655 2 3588428 3588750 Durio zibethinus 66656 AAG|GTATCTGATC...TGGCTGTTAATT/CAAGTATTAATT...GGCAG|TTA 0 1 37.636
67905325 GT-AG 0 0.0001273435358528 145 rna-XM_022879031.1 12758655 3 3588184 3588328 Durio zibethinus 66656 AAG|GTACATATCA...GTGTATTTATCT/ATTTATCTAATA...CCCAG|AGT 0 1 42.768
67905326 GT-AG 0 1.000000099473604e-05 604 rna-XM_022879031.1 12758655 4 3587496 3588099 Durio zibethinus 66656 CAG|GTTTTGATCT...TGATTCTCAACT/TTGATTCTCAAC...TGCAG|GGT 0 1 47.123
67905327 GC-AG 0 1.000000099473604e-05 78 rna-XM_022879031.1 12758655 5 3587274 3587351 Durio zibethinus 66656 CAG|GCAAGTAGTC...TACTTCCTGACA/TATTAGTTTACT...TGCAG|GGA 0 1 54.588
67905328 GT-AG 0 0.0003202816444766 341 rna-XM_022879031.1 12758655 6 3586867 3587207 Durio zibethinus 66656 GTG|GTAGGTTTTG...GATCCCCTGATT/CCCTGATTGACA...TTCAG|CTT 0 1 58.009
67905329 GT-AG 0 0.0016305960130236 86 rna-XM_022879031.1 12758655 7 3586712 3586797 Durio zibethinus 66656 AAG|GTATTCAATT...TTTCTCATATTA/TTGTTTCTCATA...TTCAG|GAT 0 1 61.586
67905330 GT-AG 0 0.0044331362704797 819 rna-XM_022879031.1 12758655 9 3585781 3586599 Durio zibethinus 66656 CGG|GTATGTGTAA...TACTTCTTAATT/TGCTTTCTTACA...ATCAG|GTA 0 1 67.341
67905331 GT-AG 0 0.0013642484300479 96 rna-XM_022879031.1 12758655 10 3585632 3585727 Durio zibethinus 66656 CGC|GTAGGTTTTC...TCAGGCTTGATG/TTGATGCTAATT...TATAG|CTA 2 1 70.088
67905332 GT-AG 0 1.000000099473604e-05 95 rna-XM_022879031.1 12758655 11 3585398 3585492 Durio zibethinus 66656 CAG|GTTTGATAAG...CATTCTATAACT/CATTCTATAACT...TGCAG|GGA 0 1 77.294
67905333 GT-AG 0 1.000000099473604e-05 176 rna-XM_022879031.1 12758655 12 3585065 3585240 Durio zibethinus 66656 CTG|GTAAGTATAT...TTGTCTTTCTTT/ATTAATCTGATT...CTTAG|GTG 1 1 85.433
67905334 GT-AG 0 1.000000099473604e-05 414 rna-XM_022879031.1 12758655 13 3584572 3584985 Durio zibethinus 66656 CAG|GTACGATGTT...TTGTTTTTTGCT/TTTTTGCTGATT...TTCAG|CTG 2 1 89.528
67905335 GT-AG 0 0.0167751821598954 77 rna-XM_022879031.1 12758655 14 3584428 3584504 Durio zibethinus 66656 GAT|GTATGCACAA...CCTTCTTTGTTT/TTATTACTCAAT...TGCAG|ATT 0 1 93.002

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