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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
21287042 GT-AG 0 1.000000099473604e-05 186 rna-XM_006676311.1 4118561 2 2670410 2670595 Batrachochytrium dendrobatidis 109871 TGG|GTGAGAATTA...TACGACTTATTT/TTACGACTTATT...ATTAG|CGA 2 1 2.055
21287043 GT-AG 0 0.0001815727989321 125 rna-XM_006676311.1 4118561 3 2670118 2670242 Batrachochytrium dendrobatidis 109871 CTG|GTAAGTTTTT...TAATTTTTGATT/TAATTTTTGATT...TATAG|AGG 1 1 7.028
21287044 GT-AG 0 4.967773574570953e-05 83 rna-XM_006676311.1 4118561 4 2669967 2670049 Batrachochytrium dendrobatidis 109871 CAA|GTACAGAACT...CGACTTTTAATT/CGACTTTTAATT...AATAG|ATA 0 1 9.053
21287045 GT-AG 0 0.0003749156344479 93 rna-XM_006676311.1 4118561 5 2669757 2669849 Batrachochytrium dendrobatidis 109871 CCT|GTACGTAGCT...TAAACCTCGATC/CGTTGTCTAACA...TACAG|TCA 0 1 12.537
21287046 GT-AG 0 1.000000099473604e-05 86 rna-XM_006676311.1 4118561 6 2669563 2669648 Batrachochytrium dendrobatidis 109871 CAG|GTTGATTAAA...ATGTTCTTCACT/ATGTTCTTCACT...AATAG|CAC 0 1 15.753
21287047 GT-AG 0 5.49172547045968e-05 80 rna-XM_006676311.1 4118561 7 2668760 2668839 Batrachochytrium dendrobatidis 109871 GAG|GTAATTTTGA...AATATTTTACTT/GAATATTTTACT...AATAG|CTT 0 1 37.284
21287048 GT-AG 0 4.059722886200946e-05 91 rna-XM_006676311.1 4118561 8 2668494 2668584 Batrachochytrium dendrobatidis 109871 CAG|GTACTTTAGA...CATTGGTTAACC/CATTGGTTAACC...TCCAG|ATC 1 1 42.496
21287049 GT-AG 0 1.000000099473604e-05 112 rna-XM_006676311.1 4118561 9 2668102 2668213 Batrachochytrium dendrobatidis 109871 AAA|GTGAGAAGCA...ACTATATTGATC/ACTATATTGATC...GATAG|AAA 2 1 50.834
21287050 GT-AG 0 6.224010931337096e-05 79 rna-XM_006676311.1 4118561 10 2667892 2667970 Batrachochytrium dendrobatidis 109871 ATG|GTATGATCAA...CTTTTTCTAATT/CTTTTTCTAATT...TTTAG|TTC 1 1 54.735
21287051 GT-AG 0 1.000000099473604e-05 89 rna-XM_006676311.1 4118561 11 2667306 2667394 Batrachochytrium dendrobatidis 109871 AAG|GTGAACACGA...GAATGCTTACTA/TGAATGCTTACT...TATAG|CCT 0 1 69.535
21292119 GC-AG 0 1.000000099473604e-05 261 rna-XM_006676311.1 4118561 1 2670641 2670901 Batrachochytrium dendrobatidis 109871 AAA|GCAAGTTTTT...TTTGTTTAAATA/CCACTGTTAATC...AATAG|AAC   0 1.817

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