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

✎ 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
116463052 GT-AG 0 1.000000099473604e-05 441 rna-XM_021647718.1 21550682 1 3880174 3880614 Meriones unguiculatus 10047 CCT|GTAAGTGGCG...AGCCTCTCAATC/CTGTGTGTGACC...TCCAG|GGT 0 1 3.191
116463053 GT-AG 0 1.000000099473604e-05 195 rna-XM_021647718.1 21550682 2 3879933 3880127 Meriones unguiculatus 10047 AGA|GTAAGTAAGG...GAACTCTTCTCA/ACTCTTCTCACT...TCCAG|AGA 1 1 7.27
116463054 GT-AG 0 1.000000099473604e-05 933 rna-XM_021647718.1 21550682 3 3878877 3879809 Meriones unguiculatus 10047 TAG|GTAAGCAGCT...CACTCCCTGCTC/GTCAGGCTGACT...CTTAG|GAC 1 1 18.174
116463055 GT-AG 0 1.000000099473604e-05 140 rna-XM_021647718.1 21550682 4 3878577 3878716 Meriones unguiculatus 10047 CAA|GTGAGAGTCT...TGAGCCTTGTCT/TGAATCTTGAGC...TACAG|AAC 2 1 32.358
116463056 GT-AG 0 1.000000099473604e-05 87 rna-XM_021647718.1 21550682 5 3878400 3878486 Meriones unguiculatus 10047 TCA|GTAAGTGGGA...AAGGTCCTGACA/AAGGTCCTGACA...CCTAG|GTA 2 1 40.337
116463057 GT-AG 0 0.0005395653778086 133 rna-XM_021647718.1 21550682 6 3878217 3878349 Meriones unguiculatus 10047 CAG|GTATGGTTGT...TAGACCTTACAT/CTAGACCTTACA...CTCAG|GGA 1 1 44.77
116463058 GT-AG 0 1.000000099473604e-05 1198 rna-XM_021647718.1 21550682 7 3876888 3878085 Meriones unguiculatus 10047 AAG|GTAGGAATGG...CTTCCTCTAGCT/GGGGCACTCACT...TGCAG|GAG 0 1 56.383
116463059 GT-AG 0 0.035230208809779 97 rna-XM_021647718.1 21550682 8 3876718 3876814 Meriones unguiculatus 10047 CAG|GTATCTGGAG...GTCTCCTTGGCC/TTGGCCTTCATA...CCCAG|AAT 1 1 62.855
116463060 GT-AG 0 1.000000099473604e-05 315 rna-XM_021647718.1 21550682 9 3876304 3876618 Meriones unguiculatus 10047 TCA|GTAAGAACAG...GAGACCTTGTCC/TGTCCCCTCAAG...CCCAG|GTG 1 1 71.631
116463061 GT-AG 0 1.000000099473604e-05 91 rna-XM_021647718.1 21550682 10 3876110 3876200 Meriones unguiculatus 10047 CAG|GTGAATGTTG...GGAGCCTTGAAG/AAGTTAGTGACT...ACCAG|GCA 2 1 80.762
116463062 GT-AG 0 1.000000099473604e-05 714 rna-XM_021647718.1 21550682 11 3875248 3875961 Meriones unguiculatus 10047 GAG|GTGAGCCACC...AGGTCCCGACCA/CAGGTCCCGACC...TCCAG|GAA 0 1 93.883

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