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

✎ 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
81842127 GT-AG 0 1.000000099473604e-05 38263 rna-XM_015411167.1 15121826 1 3794059 3832321 Gekko japonicus 146911 GAC|GTTAGCCAGA...TTTCCCTGAATA/CTTTCCCTGAAT...CTTAG|GTA 0 1 7.368
81842128 GT-AG 0 1.000000099473604e-05 9966 rna-XM_015411167.1 15121826 2 3783991 3793956 Gekko japonicus 146911 GAG|GTAAACAGAG...CCCTGTTTAATG/CCCTGTTTAATG...TGCAG|ATC 0 1 14.526
81842129 GT-AG 0 1.000000099473604e-05 986 rna-XM_015411167.1 15121826 3 3782879 3783864 Gekko japonicus 146911 AAG|GTAGGAGAGA...TAATCTTTATAA/TCCTGTCTCACC...TGCAG|ATA 0 1 23.368
81842130 GT-AG 0 1.3768090153971673e-05 1476 rna-XM_015411167.1 15121826 4 3781308 3782783 Gekko japonicus 146911 CAT|GTAAGTACCA...TGTCCCTTGTTT/CAGGCATTGATG...TTCAG|TCT 2 1 30.035
81842131 GT-AG 0 1.000000099473604e-05 18476 rna-XM_015411167.1 15121826 5 3762741 3781216 Gekko japonicus 146911 CAG|GTGAGACTCA...TCTGTCTTCCCA/GACTGACTCATA...GGCAG|GTA 0 1 36.421
81842132 GT-AG 0 0.1155350880945332 25347 rna-XM_015411167.1 15121826 6 3737208 3762554 Gekko japonicus 146911 GAG|GTATCTCATT...TTGGCTTTGTCT/CATCTTTTCAAA...CCCAG|GTC 0 1 49.474
81842133 GT-AG 0 3.243862711548066e-05 3502 rna-XM_015411167.1 15121826 7 3733598 3737099 Gekko japonicus 146911 AAG|GTACATCCCA...TCTTCTTTCATG/TCTTCTTTCATG...TGCAG|CCT 0 1 57.053
81842134 GT-AG 0 0.0301211779175985 2827 rna-XM_015411167.1 15121826 8 3730694 3733520 Gekko japonicus 146911 CAG|GTAACTTTCA...CCATCTTTAAAC/CCATCTTTAAAC...TGCAG|CAC 2 1 62.456
81842135 GT-AG 0 3.438284792224403e-05 1395 rna-XM_015411167.1 15121826 9 3729149 3730543 Gekko japonicus 146911 CAT|GTAAGCCAGT...TATTGTTTGACC/TATTGTTTGACC...TGCAG|TGA 2 1 72.982
81842136 GT-AG 0 1.000000099473604e-05 4022 rna-XM_015411167.1 15121826 10 3724962 3728983 Gekko japonicus 146911 CAG|GTAAAGAAGG...TCTGTCTTGCAT/ATTCAGGTTATT...TCCAG|GCC 2 1 84.561
81842137 GT-AG 0 1.000000099473604e-05 1300 rna-XM_015411167.1 15121826 11 3723571 3724870 Gekko japonicus 146911 AAG|GTACTGAGGC...ATGGCATTAAAT/ATGGCATTAAAT...ACCAG|GCC 0 1 90.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 32.179ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)