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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
110537201 GT-AG 0 0.001179762308495 185 rna-XM_008370249.3 20642364 2 22275004 22275188 Malus domestica 3750 GGG|GTACGTTTTA...TTGGCTCTGACA/TGGCTTCTAATT...GCCAG|TGC 1 1 24.011
110537202 GT-AG 0 1.000000099473604e-05 392 rna-XM_008370249.3 20642364 3 22274480 22274871 Malus domestica 3750 TAG|GTGAGTTTTT...CTTTTTATGATT/GATTATTTCATT...GTCAG|GCA 1 1 28.187
110537203 GT-AG 0 0.0015683435730411 199 rna-XM_008370249.3 20642364 4 22274213 22274411 Malus domestica 3750 CAG|GTATTTTGGT...ATGCCTTTGGTT/GTGATGTTGATT...AACAG|GCT 0 1 30.339
110537204 GT-AG 0 0.007964083549732 192 rna-XM_008370249.3 20642364 5 22273956 22274147 Malus domestica 3750 GAG|GTATTGTTAT...ATTTTTTTAACT/ATTTTTTTAACT...TACAG|CGA 2 1 32.395
110537205 GT-AG 0 1.000000099473604e-05 656 rna-XM_008370249.3 20642364 6 22273233 22273888 Malus domestica 3750 AAG|GTCAGTCTTT...TTATTCTTAACT/TTATTCTTAACT...TTCAG|GTG 0 1 34.514
110537206 GT-AG 0 0.0001210817259585 87 rna-XM_008370249.3 20642364 7 22272885 22272971 Malus domestica 3750 CAG|GTGTGTTGCA...ATTCTCTTGACT/ATTCTCTTGACT...CACAG|TTC 0 1 42.771
110537207 GT-AG 0 3.2398101406395654e-05 412 rna-XM_008370249.3 20642364 8 22272346 22272757 Malus domestica 3750 CAG|GTAAACTAGA...CTGCCTCTAACT/CTTCAACTGACC...TTTAG|CAT 1 1 46.789
110537208 GT-AG 0 1.000000099473604e-05 202 rna-XM_008370249.3 20642364 9 22271821 22272022 Malus domestica 3750 AAG|GTTAGTTTGG...GTTTTCTTGAAT/TTATTTCTTACA...TTCAG|AGA 0 1 57.007
110537209 GT-AG 0 8.385084704241047e-05 234 rna-XM_008370249.3 20642364 10 22271507 22271740 Malus domestica 3750 AAG|GTATGACTGA...AGTATTTTAATG/AGTATTTTAATG...TTCAG|TGA 2 1 59.538
110537210 GT-AG 0 1.000000099473604e-05 961 rna-XM_008370249.3 20642364 12 22270444 22271404 Malus domestica 3750 AAG|GTATTAAGTG...GGCTACTTGGTC/ACCGTGTTCAGT...TTCAG|GAG 0 1 62.702
110537211 GT-AG 0 0.0224023807954146 426 rna-XM_008370249.3 20642364 13 22269935 22270360 Malus domestica 3750 GGG|GTATGCAGTT...TATTCATTGATT/CTAATATTCATT...TACAG|ATA 2 1 65.327
110537212 GT-AG 0 1.000000099473604e-05 710 rna-XM_008370249.3 20642364 15 22268608 22269317 Malus domestica 3750 CAG|GTAAAATCTC...CTTTCTATGAAT/ATCTCTCTCACT...TACAG|TGA 2 1 84.783
110542883 GT-AG 0 1.9617060238705654e-05 621 rna-XM_008370249.3 20642364 1 22275573 22276193 Malus domestica 3750 GAG|GTTATCTTCG...GAATATTTAACT/GAATATTTAACT...TGCAG|AAG   0 13.54

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