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

✎ 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
89436118 GT-AG 0 1.4734061210435427e-05 16072 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 1 1552682 1568753 Halcyon senegalensis 342381 AAG|GTAAGCCGGC...CTCTCTTTGACT/CTCTCTTTGACT...TGCAG|GTG 0 1 21.459
89436119 GT-AG 0 1.000000099473604e-05 15636 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 2 1536830 1552465 Halcyon senegalensis 342381 AAG|GTGAGCGAGC...TGCTCCTGTTCC/ACATGAGTGACT...TGCAG|GTC 0 1 29.185
89436120 GT-AG 0 1.000000099473604e-05 11716 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 3 1524988 1536703 Halcyon senegalensis 342381 AAG|GTAAGAGTGA...CCCATCCTGACT/CCCATCCTGACT...TGCAG|GTA 0 1 33.691
89436121 GT-AG 0 0.0245854711872099 1672 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 4 1523079 1524750 Halcyon senegalensis 342381 TCT|GTCACCTCAG...CCTGTCTTCTTC/GTCCTCGGCACC...TGCAG|CCT 0 1 42.167
89436122 GT-AG 0 1.000000099473604e-05 302 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 5 1522564 1522865 Halcyon senegalensis 342381 AAG|GTGAGGCCCG...CTCTCTTTGGTT/CTTGCTCCAACC...CCCAG|TTC 0 1 49.785
89436123 GT-AG 0 2.116680010768726e-05 1833 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 6 1520518 1522350 Halcyon senegalensis 342381 CGG|GTAAGTTCCT...CTTGTTTTAATC/CTTGTTTTAATC...CCCAG|GAG 0 1 57.403
89436124 GT-AG 0 1.000000099473604e-05 4129 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 7 1516356 1520484 Halcyon senegalensis 342381 GAG|GTAGGGGCTG...TCTTCCTTCTTT/GCTGCTGTGACC...GTTAG|AAC 0 1 58.584
89436125 GT-AG 0 1.000000099473604e-05 391 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 8 1515893 1516283 Halcyon senegalensis 342381 CTG|GTAAGACACT...CTGTTCTTGGTC/GGTGTCCTAAAG...GGCAG|GAT 0 1 61.159
89436126 GT-AG 0 0.0001512448283478 2019 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 9 1513270 1515288 Halcyon senegalensis 342381 GGT|GTCACGTTAT...TGCCCGCTAACA/TGCCCGCTAACA...CCCAG|CCT 1 1 82.761
89436127 GT-AG 0 1.000000099473604e-05 572 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 10 1512519 1513090 Halcyon senegalensis 342381 CCG|GTGAGGCTGG...GGGGCCCTGGCA/GGCAGGCAAACG...CACAG|CCG 0 1 89.163
89436128 GT-AG 0 1.000000099473604e-05 521 rna-gnl|WGS:WBNJ|HALSEN_R07252_mrna 16791973 11 1511875 1512395 Halcyon senegalensis 342381 CAG|GTAGGGCAGG...CCACCCAAAACG/CACAAGCTGACC...TGCAG|CGC 0 1 93.562

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