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

✎ 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
106845439 GT-AG 0 1.000000099473604e-05 4313 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 1 4675161 4679473 Lophotis ruficrista 172689 CAG|GTAATGGCGG...ACAACTGTGATT/TACAGTCTGATT...TGCAG|CCG 2 1 4.378
106845440 GT-AG 0 0.000190455234801 728 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 2 4679691 4680418 Lophotis ruficrista 172689 CAG|GTAACTCCAG...GAATTTTTACCT/TGAATTTTTACC...TGCAG|GTG 0 1 12.362
106845441 GT-AG 0 1.353153964349646e-05 1640 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 3 4680517 4682156 Lophotis ruficrista 172689 GAG|GTAAGATTTC...TAAGTCTTAATG/CTATTGTTAACT...ACTAG|TTT 2 1 15.968
106845442 GT-AG 0 0.0003074661456145 6613 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 4 4682287 4688899 Lophotis ruficrista 172689 GAG|GTACTTGTCT...TAATTCTTATTA/CTAATTCTTATT...TTCAG|CCT 0 1 20.751
106845443 GT-AG 0 1.000000099473604e-05 1237 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 5 4688994 4690230 Lophotis ruficrista 172689 AAG|GTAAAAGCTT...TTGTATTTAAAA/ATTGTATTTAAA...TTCAG|ACT 1 1 24.209
106845444 GT-AG 0 1.000000099473604e-05 1438 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 6 4690344 4691781 Lophotis ruficrista 172689 CTT|GTGAGTATTG...CACTCATTACTA/TCATTACTAAAC...TCAAG|ATC 0 1 28.366
106845445 GT-AG 0 1.000000099473604e-05 2504 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 7 4691983 4694486 Lophotis ruficrista 172689 GAA|GTAAGTGAAA...TTTTTTTTGCCT/TTGCCTCCCACC...TGTAG|ATT 0 1 35.762
106845446 GT-AG 0 1.232791544280088e-05 2622 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 8 4695271 4697892 Lophotis ruficrista 172689 TGG|GTATGGAATC...ATAACTTTTGTT/ACTTTTGTTATG...TTCAG|AGA 1 1 64.606
106845447 GT-AG 0 0.0001453555316494 947 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 9 4698039 4698985 Lophotis ruficrista 172689 AAG|GTACACCTCA...TGCAGGTTAACT/CTCCATTTCATT...TCCAG|AAT 0 1 69.978
106845448 GT-AG 0 1.000000099473604e-05 1734 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 10 4699096 4700829 Lophotis ruficrista 172689 GAG|GTAAAAAAGA...GTTCTCTTCATC/AGATTGTTCATC...AACAG|GAT 2 1 74.025
106845449 GT-AG 0 1.000000099473604e-05 3429 rna-gnl|WGS:VWYV|LOPRUF_R10273_mrna 19948529 11 4700911 4704339 Lophotis ruficrista 172689 GAG|GTAATGTAAT...AATCTTTTAATA/TTAATATTAATT...TCTAG|GAA 2 1 77.005

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