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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
30553143 GT-AG 0 0.0003505838398063 2942 rna-XM_042335666.1 5963427 2 130518158 130521099 Callorhinchus milii 7868 CAG|GTACTTTTGC...TCTTTCATATCC/CTGTAGTTTATT...TCTAG|GTA 2 1 15.117
30553144 GT-AG 0 0.0003945884670877 430 rna-XM_042335666.1 5963427 3 130521257 130521686 Callorhinchus milii 7868 GCT|GTTGACCTAC...AATTGTTTGACC/AATTGTTTGACC...TTGAG|ATA 0 1 18.713
30553145 GT-AG 0 0.0096351589810226 981 rna-XM_042335666.1 5963427 4 130521824 130522804 Callorhinchus milii 7868 TGG|GTATGTTGCT...TTCTCCCTAATT/CTAATTTTGACA...TCTAG|TGG 2 1 21.851
30553146 GT-AG 0 1.000000099473604e-05 1538 rna-XM_042335666.1 5963427 5 130523021 130524558 Callorhinchus milii 7868 AAG|GTATGAGAGT...GTATTTTTGCTA/ATTTTCCACATT...AATAG|GCT 2 1 26.798
30553147 GT-AG 0 9.553122952829298e-05 991 rna-XM_042335666.1 5963427 6 130524647 130525637 Callorhinchus milii 7868 GAG|GTAATTTAGA...TTGTTCTTAGCT/TTTGTTCTTAGC...ATCAG|GTG 0 1 28.814
30553148 GT-AG 0 1.000000099473604e-05 2831 rna-XM_042335666.1 5963427 7 130525760 130528590 Callorhinchus milii 7868 AAG|GTGAGAGTTT...ATCACCTTGATT/TTTTTGCTAATA...CCTAG|GAT 2 1 31.608
30553149 GT-AG 0 0.0030798464680352 841 rna-XM_042335666.1 5963427 8 130528697 130529537 Callorhinchus milii 7868 GCT|GTAAGCTTGT...TGCTTGTTATTG/CTGCTTGTTATT...TTTAG|CTT 0 1 34.036
30553150 GT-AG 0 9.799415264167878e-05 1547 rna-XM_042335666.1 5963427 9 130529610 130531156 Callorhinchus milii 7868 CTG|GTAAATATTT...TTATCTTTATCT/CATTTTTTGATT...TTAAG|GTA 0 1 35.685
30553151 GT-AG 0 1.000000099473604e-05 722 rna-XM_042335666.1 5963427 10 130531267 130531988 Callorhinchus milii 7868 CAG|GTGAGTGGCA...TTTCATTTAATT/CTGTATTTCATT...TTCAG|GGT 2 1 38.204
30553152 GT-AG 0 5.779059915247362e-05 4151 rna-XM_042335666.1 5963427 11 130534470 130538620 Callorhinchus milii 7868 ACA|GTAAGTATGA...TTTATTTCAACT/TTTATTTCAACT...CCCAG|AAA 2 1 95.03
30553153 GT-AG 0 1.000000099473604e-05 1667 rna-XM_042335666.1 5963427 12 130538715 130540381 Callorhinchus milii 7868 TCG|GTAAGATTTT...TATTTTTTAAGG/ATATTTTTTAAG...TGCAG|GAT 0 1 97.183
30565462 GT-AG 0 1.000000099473604e-05 1669 rna-XM_042335666.1 5963427 1 130515859 130517527 Callorhinchus milii 7868 AAG|GTAAAGAATG...AAACTTTTATTT/TTATTATTAAAT...TCCAG|TGG   0 1.122

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