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)

9 rows where transcript_id = 27391013

✎ 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
152560618 GT-AG 0 0.0009286813632301 3271 rna-XM_026810528.2 27391013 1 22524247 22527517 Phoenix dactylifera 42345 AAG|GTTTGTTTTC...CAACTTTTAATT/CAACTTTTAATT...TGCAG|TGC 1 1 71.232
152560619 GT-AG 0 4.2105722596053086e-05 153 rna-XM_026810528.2 27391013 2 22523925 22524077 Phoenix dactylifera 42345 CAC|GTAAGTTATT...TATCTCTTATGG/TTATCTCTTATG...TTCAG|TAG 2 1 74.646
152560620 GT-AG 0 1.000000099473604e-05 1560 rna-XM_026810528.2 27391013 3 22522214 22523773 Phoenix dactylifera 42345 GAG|GTGAGTGTAC...TTTGCTTGAGTA/ATTTGCTTGAGT...TGCAG|GAA 0 1 77.697
152560621 GT-AG 0 1.0754507863993616e-05 550 rna-XM_026810528.2 27391013 4 22521564 22522113 Phoenix dactylifera 42345 CGC|GTAAGTCAAC...CAGGTTTTAATT/CAGGTTTTAATT...CACAG|GGG 1 1 79.717
152560622 GT-AG 0 0.0015398498376562 568 rna-XM_026810528.2 27391013 5 22520921 22521488 Phoenix dactylifera 42345 CAG|GTACTTTTTC...CATGCCTTGCTC/TTCATTCTCATG...TGCAG|ACG 1 1 81.232
152560623 GT-AG 0 0.1040825845331814 129 rna-XM_026810528.2 27391013 6 22520701 22520829 Phoenix dactylifera 42345 TGA|GTATGTTCAA...AAAGTTTTAAAT/TTTTTCCTGAAA...AACAG|ATA 2 1 83.071
152560624 GT-AG 0 1.000000099473604e-05 93 rna-XM_026810528.2 27391013 7 22520337 22520429 Phoenix dactylifera 42345 AAG|GTGATCAATC...TTGTCCTGGACA/ACATCTCTAATA...TACAG|GTA 0 1 88.545
152560625 GT-AG 0 0.0008877802485817 91 rna-XM_026810528.2 27391013 8 22520203 22520293 Phoenix dactylifera 42345 GAG|GTACCACTAT...ATTCTCATAACC/AAAATTCTCATA...GGCAG|GAC 1 1 89.414
152560626 GT-AG 0 0.0005942413106068 2270 rna-XM_026810528.2 27391013 9 22517829 22520098 Phoenix dactylifera 42345 GAG|GTATGTAATG...GTTTTCCTAACC/GTTTTCCTAACC...AGCAG|TGC 0 1 91.515

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