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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
92592817 GT-AG 0 1.000000099473604e-05 466 rna-XM_020571490.1 17327627 1 1014896 1015361 Heterostelium album 2086695 ACA|GTAAGTAGAC...ATAATATTAATA/ATAATATTAATA...ATTAG|CAA 2 1 7.285
92592818 GT-AG 0 5.5005377543899775e-05 65 rna-XM_020571490.1 17327627 2 1014791 1014855 Heterostelium album 2086695 TTA|GTAAGATTTC...ATTTTCTAAATA/TATTTTCTAAAT...TGTAG|ATT 0 1 7.996
92592819 GT-AG 0 2.324083702721674e-05 76 rna-XM_020571490.1 17327627 3 1014543 1014618 Heterostelium album 2086695 TTA|GTAAGTAAAT...CATTTTTTAATA/TTTATATTAATT...ATTAG|CTT 1 1 11.052
92592820 GT-AG 0 0.0050722005605338 68 rna-XM_020571490.1 17327627 4 1014280 1014347 Heterostelium album 2086695 CTG|GTATTTATTT...CAGTTATTAACA/TTTTAATTAATT...TTTAG|AAT 1 1 14.517
92592821 GT-AG 0 1.589861373297954e-05 244 rna-XM_020571490.1 17327627 5 1013541 1013784 Heterostelium album 2086695 AAT|GTAAATATTT...TACAGTTTATAA/ATACAGTTTATA...ATTAG|CAG 1 1 23.312
92592822 GT-AG 0 1.000000099473604e-05 68 rna-XM_020571490.1 17327627 6 1011747 1011814 Heterostelium album 2086695 AGG|GTAAGAATAA...TATTCATTATTT/TATTTATTCATT...AATAG|TTT 2 1 53.98
92592823 GT-AG 0 1.000000099473604e-05 82 rna-XM_020571490.1 17327627 7 1011513 1011594 Heterostelium album 2086695 AAG|GTAATATATA...TATTTTTTCATA/TATTTTTTCATA...AACAG|TTC 1 1 56.681
92592824 GT-AG 0 7.889850503963362e-05 84 rna-XM_020571490.1 17327627 8 1011117 1011200 Heterostelium album 2086695 AGT|GTAAAGTATT...TTTTTTTTAAAA/TTTTTTTTTAAA...TATAG|CAT 1 1 62.225
92592825 GT-AG 0 1.000000099473604e-05 68 rna-XM_020571490.1 17327627 9 1009603 1009670 Heterostelium album 2086695 GAA|GTAAGTAGTA...CTTTTTTTATTT/ACTTTTTTTATT...AATAG|GAT 1 1 87.918
92592826 GT-AG 0 0.0002923126034466 68 rna-XM_020571490.1 17327627 10 1009364 1009431 Heterostelium album 2086695 TTT|GTAAGTATCA...ACTTTTTTATTT/TACTTTTTTATT...TTTAG|TCT 1 1 90.956
92592827 GT-AG 0 0.0014567226858169 88 rna-XM_020571490.1 17327627 11 1009112 1009199 Heterostelium album 2086695 CAG|GTATGTCATT...TTTTTTTTAATA/TTTTTTTTAATA...TATAG|ATG 0 1 93.87
92592828 GT-AG 0 0.0003279990917604 637 rna-XM_020571490.1 17327627 12 1008150 1008786 Heterostelium album 2086695 ATA|GTAATTTGGT...AATACTTTATAA/GAATACTTTATA...ATTAG|CCT 1 1 99.645

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