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)

12 rows where transcript_id = 38228103

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
211078935 GT-AG 0 1.000000099473604e-05 19556 rna-XM_046986993.1 38228103 1 6975359 6994914 Xenia sp. carnegie-2017 2897299 CAG|GTGAGTCAGT...GTTGCATTAAAT/GTTGCATTAAAT...TGCAG|ATG 1 1 1.63
211078936 GT-AG 0 1.0269045502651353e-05 522 rna-XM_046986993.1 38228103 2 6974588 6975109 Xenia sp. carnegie-2017 2897299 GAG|GTATAAGGGC...CATACATTAACG/CTGAAATTTATA...AAAAG|GTA 1 1 7.689
211078937 GT-AG 0 1.00496206908223e-05 169 rna-XM_046986993.1 38228103 3 6974014 6974182 Xenia sp. carnegie-2017 2897299 AAG|GTAACGGTCT...GTCTCTGTAAAC/ATATGTGTAATT...TTTAG|ACT 1 1 17.543
211078938 GT-AG 0 0.0002623391498836 247 rna-XM_046986993.1 38228103 4 6973404 6973650 Xenia sp. carnegie-2017 2897299 TAG|GTTTGTTGTT...TTGTTTTTATCT/ATTGTTTTTATC...TTCAG|GTT 1 1 26.375
211078939 GT-AG 0 0.0005595537145215 2234 rna-XM_046986993.1 38228103 5 6970801 6973034 Xenia sp. carnegie-2017 2897299 AAG|GTTTGCATGC...TTCATCTTAGTA/TTCCAATTCATC...TACAG|AGA 1 1 35.353
211078940 GT-AG 0 2.0462736995432796e-05 333 rna-XM_046986993.1 38228103 6 6970219 6970551 Xenia sp. carnegie-2017 2897299 AGG|GTTTGTGGCT...ATTTTCTTAAAA/ATATTTTTTATG...TAAAG|GTA 1 1 41.411
211078941 GT-AG 0 3.800807009334384e-05 187 rna-XM_046986993.1 38228103 7 6969627 6969813 Xenia sp. carnegie-2017 2897299 AAG|GTCTTTAAAT...TTATTTTTAATT/TTATTTTTAATT...TTTAG|ACT 1 1 51.265
211078942 GT-AG 0 0.0003387457165693 1156 rna-XM_046986993.1 38228103 8 6968102 6969257 Xenia sp. carnegie-2017 2897299 AAG|GTTTGTTTTT...ATTTTCGTAGTT/TTCCAATTCATT...GACAG|ATC 1 1 60.243
211078943 GT-AG 0 1.000000099473604e-05 6263 rna-XM_046986993.1 38228103 9 6961596 6967858 Xenia sp. carnegie-2017 2897299 AAG|GTTAGTGCCG...AAAGTCTTATAA/GAAAGTCTTATA...GACAG|GTT 1 1 66.156
211078944 GT-AG 0 1.000000099473604e-05 223 rna-XM_046986993.1 38228103 10 6960860 6961082 Xenia sp. carnegie-2017 2897299 AAG|GTCAGTATAT...TTCTCTTTAATT/TTCTTTTTTACA...TTAAG|ATT 1 1 78.637
211078945 GT-AG 0 1.000000099473604e-05 776 rna-XM_046986993.1 38228103 11 6959727 6960502 Xenia sp. carnegie-2017 2897299 TAG|GTTTGTACCT...GTACTCTTCATT/GTACTCTTCATT...TGCAG|AAC 1 1 87.324
211078946 GT-AG 0 1.0785803625611295e-05 508 rna-XM_046986993.1 38228103 12 6959081 6959588 Xenia sp. carnegie-2017 2897299 AAA|GTAAGATACT...ATGTCTTTAATT/CTTTAATTCATT...TCTAG|AAA 1 1 90.681

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