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

✎ 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
106845249 GT-AG 0 1.000000099473604e-05 946 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 1 1170731 1171676 Lophotis ruficrista 172689 AAG|GTAAGCACCT...TTTTTTTTTTTT/TGTTTACTAAGT...TGCAG|GAA 0 1 2.703
106845250 GT-AG 0 1.000000099473604e-05 1798 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 2 1168788 1170585 Lophotis ruficrista 172689 CAG|GTAAAATACT...TTTGTTTTGTTG/AGTGGTTTGATA...GACAG|ATG 1 1 6.052
106845251 GT-AG 0 1.000000099473604e-05 439 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 3 1168275 1168713 Lophotis ruficrista 172689 AAG|GTGAGAAGTT...AATTCTTTACCC/AAATTCTTTACC...TTCAG|GTT 0 1 7.762
106845252 GT-AG 0 0.0001142408023977 977 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 4 1167179 1168155 Lophotis ruficrista 172689 CTA|GTAAGTAATG...TCTGCTTTAACT/TCTGCTTTAACT...TCCAG|CAT 2 1 10.511
106845253 GT-AG 0 1.000000099473604e-05 7909 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 5 1159182 1167090 Lophotis ruficrista 172689 TTG|GTAAGTGCAC...GTATTTTCAACT/TTTCAACTTATT...TACAG|GGT 0 1 12.543
106845254 GT-AG 0 0.1650949207086478 3113 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 6 1155935 1159047 Lophotis ruficrista 172689 TAG|GTATGCTTTC...GTCTCATTAATA/ATTGGTCTCATT...TTCAG|TGA 2 1 15.639
106845255 GT-AG 0 1.625039127548053e-05 630 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 7 1155220 1155849 Lophotis ruficrista 172689 AAG|GTAAGTTATT...TTTTTTTTATCA/GTTTTTTTTATC...TTTAG|GAA 0 1 17.602
106845256 GT-AG 0 0.0011407168374221 1465 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 8 1153633 1155097 Lophotis ruficrista 172689 ATG|GTATGTAGTA...TAGTTCTTAGAA/GTAGTTCTTAGA...TTCAG|GTC 2 1 20.42
106845257 GT-AG 0 0.0024836185550371 262 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 9 1153221 1153482 Lophotis ruficrista 172689 ATG|GTAAACTTTA...AATTCCTTTTCA/TTCCTTTTCAGT...TATAG|GTA 2 1 23.885
106845258 GT-AG 0 2.1184624741275564 1368 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 10 1148945 1150312 Lophotis ruficrista 172689 CAG|GTATCTTTTT...GTTACTTTGCTT/CAAGAGTTAACT...CTTAG|GAA 0 1 91.06
106845259 GT-AG 0 1.000000099473604e-05 408 rna-gnl|WGS:VWYV|LOPRUF_R13207_mrna 19948519 11 1148401 1148808 Lophotis ruficrista 172689 AAG|GTACTTGAAT...TTTTTTTTGTTT/TTACTGTTAAAT...TCAAG|GTG 1 1 94.202

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