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)

13 rows where transcript_id = 38228146

✎ 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
211079829 GT-AG 0 6.974448452487408e-05 134 rna-XM_047008972.1 38228146 1 6094712 6094845 Xenia sp. carnegie-2017 2897299 AAA|GTACGTATTC...ATTGCCATCATT/TTGCCGTTCATT...TACAG|AAG 0 1 2.605
211079830 GT-AG 0 1.000000099473604e-05 313 rna-XM_047008972.1 38228146 2 6094099 6094411 Xenia sp. carnegie-2017 2897299 ATG|GTAATTAATG...CGCTTTTTCACT/CGCTTTTTCACT...TCTAG|AAA 0 1 12.625
211079831 GT-AG 0 3.512235946643145e-05 2308 rna-XM_047008972.1 38228146 3 6091665 6093972 Xenia sp. carnegie-2017 2897299 AAG|GTATAGAAAT...TATTTTTTATTC/GTATTTTTTATT...ACTAG|GCA 0 1 16.834
211079832 GT-AG 0 0.0309520035160147 307 rna-XM_047008972.1 38228146 4 6091087 6091393 Xenia sp. carnegie-2017 2897299 TAG|GTATGCTTAT...GATATCCTATCT/ATTCTGTCCATT...TTCAG|ATC 1 1 25.885
211079833 GT-AG 0 3.696430501359603e-05 303 rna-XM_047008972.1 38228146 5 6090524 6090826 Xenia sp. carnegie-2017 2897299 GAT|GTAATATATC...TTTTTTTTACAT/TTTTTTTTTACA...TTCAG|CTA 0 1 34.569
211079834 GT-AG 0 0.000660580095613 226 rna-XM_047008972.1 38228146 6 6090202 6090427 Xenia sp. carnegie-2017 2897299 AAT|GTAAGTTTAT...AATATTTTAATT/AATATTTTAATT...TTAAG|CTA 0 1 37.776
211079835 GT-AG 0 0.0004385254998688 751 rna-XM_047008972.1 38228146 7 6089279 6090029 Xenia sp. carnegie-2017 2897299 AAG|GTTTGTTTAG...TGTGTTTTAATT/TGTGTTTTAATT...TTTAG|ATC 1 1 43.52
211079836 GT-AG 0 1.655694150577636e-05 419 rna-XM_047008972.1 38228146 8 6088660 6089078 Xenia sp. carnegie-2017 2897299 TAT|GTAAGTTAAT...GCATGTTTAATG/ATAATTCTCATG...TTCAG|CAA 0 1 50.2
211079837 GT-AG 0 1.000000099473604e-05 189 rna-XM_047008972.1 38228146 9 6088153 6088341 Xenia sp. carnegie-2017 2897299 AAG|GTAAAAATTG...AACTTCTCAAAA/CAACTTCTCAAA...TTCAG|GCT 0 1 60.822
211079838 GT-AG 0 1.000000099473604e-05 124 rna-XM_047008972.1 38228146 10 6087925 6088048 Xenia sp. carnegie-2017 2897299 TTG|GTGAGTTTTT...AGAGTTTTAATA/AGAGTTTTAATA...AACAG|GAG 2 1 64.295
211079839 GT-AG 0 0.000921734847547 69 rna-XM_047008972.1 38228146 11 6087660 6087728 Xenia sp. carnegie-2017 2897299 AAA|GTATTTACAT...AATGTCGTAATA/AATGTCGTAATA...TCTAG|GAG 0 1 70.842
211079840 GT-AG 0 1.000000099473604e-05 14256 rna-XM_047008972.1 38228146 12 6073288 6087543 Xenia sp. carnegie-2017 2897299 CAG|GTAAGATCTG...TATGACTTATAG/GTATGACTTATA...TGCAG|AAA 2 1 74.716
211079841 GT-AG 0 1.000000099473604e-05 270 rna-XM_047008972.1 38228146 13 6072471 6072740 Xenia sp. carnegie-2017 2897299 GAG|GTTTGTGTGT...GTTGTTTGAATT/TTTTCTGTTACT...TACAG|TTG 0 1 92.986

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