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

✎ 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
89670180 GT-AG 0 1.000000099473604e-05 2074 rna-XM_010562877.1 16823354 1 12184391 12186464 Haliaeetus leucocephalus 52644 AAG|GTGAGGGGCC...ATCTACTTGATT/ATCTACTTGATT...TTCAG|GTG 0 1 7.473
89670181 GT-AG 0 1.000000099473604e-05 1447 rna-XM_010562877.1 16823354 2 12182806 12184252 Haliaeetus leucocephalus 52644 TTA|GTGAGTAAAT...TGTGTTTTAAAA/TAAATTTTGAAT...GGCAG|GTG 0 1 12.527
89670182 GT-AG 0 1.000000099473604e-05 788 rna-XM_010562877.1 16823354 3 12181878 12182665 Haliaeetus leucocephalus 52644 CAG|GTAAAACCTA...CTGACTTCAACT/TTTTTGCTGACT...TTCAG|GGA 2 1 17.656
89670183 GT-AG 0 1.000000099473604e-05 1354 rna-XM_010562877.1 16823354 4 12180435 12181788 Haliaeetus leucocephalus 52644 GAG|GTAAGATTGT...GTTTTTTTGTCT/ACCTGCTTCATA...TGTAG|AGA 1 1 20.916
89670184 GT-AG 0 9.463725441073356e-05 332 rna-XM_010562877.1 16823354 5 12179996 12180327 Haliaeetus leucocephalus 52644 TTT|GTAAGTAATT...TAACTTTTAACT/TAACTTTTAACT...GGTAG|TAT 0 1 24.835
89670185 GT-AG 0 1.000000099473604e-05 588 rna-XM_010562877.1 16823354 6 12179275 12179862 Haliaeetus leucocephalus 52644 CAT|GTGAGTATAC...TTGTTTTTACTC/TTTGTTTTTACT...TCAAG|ATC 1 1 29.707
89670186 GT-AG 0 1.000000099473604e-05 1166 rna-XM_010562877.1 16823354 7 12177936 12179101 Haliaeetus leucocephalus 52644 GAG|GTCAGGACTG...TTTTTCTCGATA/AATGTGCTCATT...TGCAG|CAA 0 1 36.044
89670187 GT-AG 0 0.0095166263626239 1943 rna-XM_010562877.1 16823354 8 12174760 12176702 Haliaeetus leucocephalus 52644 CAG|GTATGCAAGG...AGTTTCTTAGCT/TTTTGTTTGACA...TTAAG|ACA 0 1 81.209
89670188 GT-AG 0 1.000000099473604e-05 3087 rna-XM_010562877.1 16823354 9 12171534 12174620 Haliaeetus leucocephalus 52644 ATG|GTAAGACAAA...ATATCATTAAAC/ATATCATTAAAC...ACCAG|GTT 1 1 86.3
89670189 GT-AG 0 1.000000099473604e-05 90 rna-XM_010562877.1 16823354 10 12171330 12171419 Haliaeetus leucocephalus 52644 GAG|GTAATATGTT...TTCGTTTTATGG/GAGTTACTGACT...TGTAG|ATA 1 1 90.476
89670190 GT-AG 0 1.000000099473604e-05 2443 rna-XM_010562877.1 16823354 11 12168785 12171227 Haliaeetus leucocephalus 52644 AGG|GTTAGTATTA...GTGTTTATAATG/ATAATGTTTATA...TTCAG|AAC 1 1 94.212

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