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)

10 rows where transcript_id = 7208772

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
37777018 GG-AG 0 0.0002530741825781 1169 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 1 192910 194078 Cephalopterus ornatus 114276 CGC|GGCTGCCCCG...GATACCCAGATG/ACGGTGTTGAGT...CCCAG|CGG 1 1 5.317
37777019 GT-AG 0 1.000000099473604e-05 1461 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 2 194213 195673 Cephalopterus ornatus 114276 AAG|GTTGGCAACA...ACATCCTTGAAT/ACATCCTTGAAT...GGCAG|CTG 0 1 11.512
37777020 GT-AG 0 1.7016248896669016e-05 673 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 3 195845 196517 Cephalopterus ornatus 114276 AAG|GTTTGTAAAT...CTCTCTTTAATT/CTCTCTTTAATT...TCCAG|TTG 0 1 19.417
37777021 GT-AG 0 1.000000099473604e-05 296 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 4 196637 196932 Cephalopterus ornatus 114276 AAG|GTAGGGGGTT...TATTGTTTAATA/TATTGTTTAATA...ATTAG|CCC 2 1 24.919
37777022 GT-AG 0 7.259814631916325e-05 1695 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 6 197175 198869 Cephalopterus ornatus 114276 GCA|GTAAGTTCAC...ACATTTTTGTTG/AAATATTACATT...GACAG|TTC 2 1 35.876
37777023 GT-AG 0 0.0004956380935526 1104 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 8 199016 200119 Cephalopterus ornatus 114276 TAC|GTAAGTTTTA...TCTGCCTTTTCT/TCAGGTTTCAGC...GGTAG|GAA 2 1 42.395
37777024 GT-AG 0 1.000000099473604e-05 585 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 9 200861 201445 Cephalopterus ornatus 114276 AAA|GTAAGTCAGT...TTTCTTTTGAAG/CCATTTCTAACA...AGCAG|CCA 2 1 76.653
37777025 GT-AG 0 1.000000099473604e-05 542 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 10 201568 202109 Cephalopterus ornatus 114276 CAG|GTAAAGCACT...TTTGTCATGAAC/GTTTTTGTCATG...TTCAG|ACA 1 1 82.293
37777026 GT-AG 0 0.0048316450928701 855 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 11 202202 203056 Cephalopterus ornatus 114276 GAG|GTAACCATGT...GCCCCTGTAACG/GTGCAGCTCAGC...AACAG|GCC 0 1 86.546
37777027 GT-AG 0 1.000000099473604e-05 241 rna-gnl|WGS:VZRE|CEPORN_R12382_mrna 7208772 12 203141 203381 Cephalopterus ornatus 114276 GAG|GTGAGTCGCC...GTATTTTTATTT/TGTATTTTTATT...TGCAG|GTG 0 1 90.43

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