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

✎ 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
67904954 GT-AG 0 1.000000099473604e-05 836 rna-XM_022894464.1 12758607 1 9709335 9710170 Durio zibethinus 66656 TTG|GTTAGTCTTC...AATTTCTAATTT/AAATTTCTAATT...TGCAG|ATA 1 1 4.527
67904955 GT-AG 0 0.0001862685274467 93 rna-XM_022894464.1 12758607 2 9710436 9710528 Durio zibethinus 66656 TGG|GTAAGCTAAT...TTATTTTTATTT/GTTATTTTTATT...TCCAG|AGA 2 1 14.202
67904956 GT-AG 0 0.0001988967690545 77 rna-XM_022894464.1 12758607 3 9710567 9710643 Durio zibethinus 66656 AAG|GTATTAGTTT...TGTTTGTTGACT/TTATACCTCATT...AACAG|ATG 1 1 15.59
67904957 GT-AG 0 0.0027455242077173 780 rna-XM_022894464.1 12758607 4 9710697 9711476 Durio zibethinus 66656 TGT|GTCCTCTGGT...GACTCTTTCATT/GACTCTTTCATT...CCTAG|TAG 0 1 17.525
67904958 GT-AG 0 0.0748189228967255 137 rna-XM_022894464.1 12758607 5 9711530 9711666 Durio zibethinus 66656 AGA|GTATGCACAC...ATTCTTTTAATC/CTTTTAATCATT...TGCAG|CTG 2 1 19.46
67904959 GT-AG 0 1.000000099473604e-05 354 rna-XM_022894464.1 12758607 7 9712847 9713200 Durio zibethinus 66656 CAG|GTATAAAAAC...TTTCTTTTAAGT/TAGAATTTAATT...TGCAG|GAG 1 1 62.468
67904960 GT-AG 0 9.447388402875934e-05 656 rna-XM_022894464.1 12758607 8 9713313 9713968 Durio zibethinus 66656 TGG|GTAAGCTATG...ATAACTTTAGAA/TTAGAATTCATT...TGCAG|CAT 2 1 66.557
67904961 GT-AG 0 1.000000099473604e-05 71 rna-XM_022894464.1 12758607 9 9714106 9714176 Durio zibethinus 66656 CAT|GTAATTGCAC...TTTCTCTTGTTA/GCTTCATTTACC...TGCAG|GCA 1 1 71.559
67904962 GT-AG 0 1.000000099473604e-05 340 rna-XM_022894464.1 12758607 10 9714644 9714983 Durio zibethinus 66656 GAG|GTGAAATTAT...ACTTGTTTAATA/TAGTTATTTACT...GTCAG|GAG 0 1 88.609
67904963 GT-AG 0 1.000000099473604e-05 104 rna-XM_022894464.1 12758607 11 9715021 9715124 Durio zibethinus 66656 AGG|GTAAGAGCTA...TTTGTCTTGACT/TTTGTCTTGACT...TGCAG|ATG 1 1 89.96
67904964 GT-AG 0 1.000000099473604e-05 112 rna-XM_022894464.1 12758607 12 9715147 9715258 Durio zibethinus 66656 CAG|GTAAGATAAC...AAACCTTTGATG/TGCTTCCTAATT...AACAG|AGT 2 1 90.763
67904965 GT-AG 0 0.0073172868044374 239 rna-XM_022894464.1 12758607 13 9715401 9715639 Durio zibethinus 66656 GCA|GTGCCCAACA...GTACATTTGATG/GAAAAATTAACA...TGCAG|GTG 0 1 95.947

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