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

✎ 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
92354346 GT-AG 0 0.0001956077502784 72 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 1 292046 292117 Hesseltinella vesiculosa 101127 CAA|GTAAGTTATG...TTTATTTTAACA/TTTATTTTAACA...TGTAG|CAT 2 1 0.467
92354347 GT-AG 0 0.0260922672034547 109 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 2 291838 291946 Hesseltinella vesiculosa 101127 GTC|GTATGTATAC...CTCTTCTTGCCA/CCTCATTTTACT...CCCAG|TGC 2 1 3.767
92354348 GT-AG 0 0.1180888753722405 98 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 3 291727 291824 Hesseltinella vesiculosa 101127 AAT|GTAACCCTCG...TTTTTCTTTTTT/CAATCACTCACG...TTTAG|GAT 0 1 4.2
92354349 GT-AG 0 1.000000099473604e-05 99 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 4 291586 291684 Hesseltinella vesiculosa 101127 AGA|GTAAAGCAGG...TTTTCTTTTGTC/TTTTTTTTCTTT...TCTAG|CTA 0 1 5.6
92354350 GT-AG 0 1.3598131926598282e-05 78 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 5 290474 290551 Hesseltinella vesiculosa 101127 CAA|GTAAGTCGTT...CCGTTTTTAATT/TTTTTTTTTACC...GCTAG|CCC 2 1 40.067
92354351 GT-AG 0 1.000000099473604e-05 59 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 6 290309 290367 Hesseltinella vesiculosa 101127 AAG|GTAAATGAGG...CACTTTTTGATT/CACTTTTTGATT...CCTAG|GCC 0 1 43.6
92354352 GT-AG 0 1.000000099473604e-05 70 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 7 290118 290187 Hesseltinella vesiculosa 101127 AGG|GTAAGTCAGG...CCTTCCTGGATT/CCTGGATTCATT...TTTAG|GAT 1 1 47.633
92354353 GT-AG 0 1.6278739686106097e-05 88 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 8 289767 289854 Hesseltinella vesiculosa 101127 CAG|GTATAGAAGA...AACCCCTTGTTT/CAAGCACTCAAA...GATAG|ACG 0 1 56.4
92354354 GT-AG 0 0.0069948949841094 575 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 9 289109 289683 Hesseltinella vesiculosa 101127 CGT|GTACGCTCGC...TTCACTTCAACC/ATCGGTTTCATC...CGTAG|GGC 2 1 59.167
92354355 GT-AG 0 1.000000099473604e-05 76 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1403091 17285698 10 288048 288123 Hesseltinella vesiculosa 101127 GAG|GTGAGTGCGA...ATGGTTTTAACC/ATGGTTTTAACC...CCTAG|CTG 0 1 92.0

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