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

✎ 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
118001389 GT-AG 0 1.000000099473604e-05 1254 rna-XM_005343328.2 21796745 2 21984063 21985316 Microtus ochrogaster 79684 CAG|GTGAGAATGA...ATCTTCTGAACC/CTGAACCTCACT...TCCAG|GAT 0 1 51.6
118001390 GT-AG 0 0.8284566357657034 6495 rna-XM_005343328.2 21796745 3 21977268 21983762 Microtus ochrogaster 79684 CAG|GTATCCTCCC...GAAGGCTGAGCT/AGAAGGCTGAGC...TCTAG|GCT 0 1 59.47
118001391 GT-AG 0 1.000000099473604e-05 1613 rna-XM_005343328.2 21796745 4 21975312 21976924 Microtus ochrogaster 79684 CTA|GTAAGTGACC...ATGTTCTTTGCC/GTTTTCCTGAAG...CATAG|ATA 1 1 68.468
118001392 GT-AG 0 1.000000099473604e-05 470 rna-XM_005343328.2 21796745 5 21974775 21975244 Microtus ochrogaster 79684 ACC|GTAAGTGCAG...GGTTCCCTGACC/TAAGCCCTCACT...TGCAG|ACG 2 1 70.226
118001393 GT-AG 0 1.000000099473604e-05 123 rna-XM_005343328.2 21796745 6 21974509 21974631 Microtus ochrogaster 79684 AAG|GTAAGGAGAG...CAGCACTGAACG/CTGAACGTGATT...TCCAG|TGG 1 1 73.977
118001394 GT-AG 0 1.000000099473604e-05 621 rna-XM_005343328.2 21796745 7 21973784 21974404 Microtus ochrogaster 79684 CTA|GTAAGTAAGC...AGCTTCCTGACA/AGCTTCCTGACA...TCCAG|GAA 0 1 76.705
118001395 GT-AG 0 1.000000099473604e-05 641 rna-XM_005343328.2 21796745 8 21973067 21973707 Microtus ochrogaster 79684 CAG|GTGGGCCTGA...CCCTCTTTGCTT/CTCCGACTCACA...TTCAG|GCT 1 1 78.699
118001396 GT-AG 0 1.000000099473604e-05 2680 rna-XM_005343328.2 21796745 9 21970298 21972977 Microtus ochrogaster 79684 CTG|GTGAGCAGGG...CTCCCTCTGACC/CTCCCTCTGACC...TTCAG|ATC 0 1 81.034
118001397 GT-AG 0 1.000000099473604e-05 1109 rna-XM_005343328.2 21796745 10 21969039 21970147 Microtus ochrogaster 79684 AAG|GTGAGTCCTT...ACGCTCTGGATT/ACTGAGCTCATT...TATAG|ACA 0 1 84.969
118001398 GT-AG 0 1.000000099473604e-05 1679 rna-XM_005343328.2 21796745 11 21967147 21968825 Microtus ochrogaster 79684 GCG|GTAAGTGACC...TCTTTGTTGACT/TCTTTGTTGACT...CACAG|GCC 0 1 90.556
118001399 GT-AG 0 1.000000099473604e-05 266 rna-XM_005343328.2 21796745 12 21966684 21966949 Microtus ochrogaster 79684 CAG|GTAAGATGTC...CCCACCTGAGCC/GGAATATTGAGT...TGCAG|GGT 2 1 95.724
118006255 GT-AG 0 1.000000099473604e-05 18966 rna-XM_005343328.2 21796745 1 21986979 22005944 Microtus ochrogaster 79684 TGG|GTAAGTGGTG...CATCCCTTTTTC/ATGGCTCTCATC...CTCAG|GCT   0 14.061

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