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

✎ 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
21286461 GT-AG 0 1.000000099473604e-05 279 rna-XM_006675713.1 4118484 1 2902583 2902861 Batrachochytrium dendrobatidis 109871 ATG|GTGGGTGTTT...ATGGTTTTACAT/TACATGTTTATT...CCTAG|GAC 0 1 4.298
21286462 GT-AG 0 0.0001513968155976 86 rna-XM_006675713.1 4118484 2 2902188 2902273 Batrachochytrium dendrobatidis 109871 TTG|GTAATCATAT...ACTGCTTTAAAT/CCTATTTTGATT...ATTAG|GAT 0 1 9.387
21286463 GT-AG 0 6.911750276481136e-05 95 rna-XM_006675713.1 4118484 3 2901856 2901950 Batrachochytrium dendrobatidis 109871 CAA|GTACTGGTCA...TTTGCTTTACTA/ATTTGCTTTACT...ATTAG|AAT 0 1 13.291
21286464 GT-AG 0 1.000000099473604e-05 102 rna-XM_006675713.1 4118484 4 2900386 2900487 Batrachochytrium dendrobatidis 109871 CAG|GTAAAGCTAT...TTTCTTGTAATA/AATATACTAACA...TATAG|ACT 0 1 35.82
21286465 GT-AG 0 1.7008430636856097e-05 101 rna-XM_006675713.1 4118484 5 2900160 2900260 Batrachochytrium dendrobatidis 109871 TAG|GTAATTTGAT...CAACCTTTATTT/GTTATTCTAACC...TAAAG|CAA 2 1 37.879
21286466 GT-AG 0 8.5091709142376e-05 115 rna-XM_006675713.1 4118484 6 2899501 2899615 Batrachochytrium dendrobatidis 109871 CAG|GTATGTACTA...TCATGTTTAAAC/GTAATACTGATC...TGTAG|CTA 0 1 46.838
21286467 GT-AG 0 0.0001169830074841 62 rna-XM_006675713.1 4118484 7 2899036 2899097 Batrachochytrium dendrobatidis 109871 AAG|GTAGATTGTT...TTTGTTTTAAAC/CTTGTATTGACC...TTTAG|ATT 1 1 53.475
21286468 GT-AG 0 1.000000099473604e-05 65 rna-XM_006675713.1 4118484 8 2898197 2898261 Batrachochytrium dendrobatidis 109871 TAG|GTATGGCGTT...CTGATCTAGACT/AATTTGCTGATC...TTTAG|CTC 1 1 66.222
21286469 GT-AG 0 0.0001549839300686 90 rna-XM_006675713.1 4118484 9 2898057 2898146 Batrachochytrium dendrobatidis 109871 AAG|GTATGATGCT...ATATTTTTGAAC/ATATTTTTGAAC...TTAAG|CAT 0 1 67.045
21286470 GT-AG 0 0.1755731279197258 87 rna-XM_006675713.1 4118484 10 2897753 2897839 Batrachochytrium dendrobatidis 109871 TAG|GTATCTACTG...GATTTCTTTTAA/GCAATTCTAATA...ACTAG|CCA 1 1 70.619
21286471 GT-AG 0 0.0029118295427301 73 rna-XM_006675713.1 4118484 11 2897396 2897468 Batrachochytrium dendrobatidis 109871 ACA|GTATGTCAAG...TTGGTTTTGATA/TTTCAACTCACT...TTTAG|GAT 0 1 75.296
21286472 GT-AG 0 0.0010522882621459 92 rna-XM_006675713.1 4118484 12 2897151 2897242 Batrachochytrium dendrobatidis 109871 ACG|GTAGGCTTGT...ATAGCTTTATAG/ATATATTTGAAT...TATAG|CTG 0 1 77.816
21286473 GT-AG 0 5.283996844360919e-05 84 rna-XM_006675713.1 4118484 13 2896626 2896709 Batrachochytrium dendrobatidis 109871 CAA|GTAAGTTTGC...TAAGATTTAATA/TTTTTGCTAATA...ATTAG|CGA 0 1 85.079

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