Adaptyv
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or…
Maintainer FreedomIntelligence · Last updated April 1, 2026
Analyzes isoform switching events and functional consequences using IsoformSwitchAnalyzeR. Predicts protein domain changes, NMD sensitivity, ORF alterations, and coding potential shifts between conditions. Use when investigating how splicing changes affect protein function.
Original source
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-isoform-switching
Skill Snapshot
Source Doc
Goal: Identify genes where the dominant isoform switches between conditions.
Approach: Import Salmon quantification, filter low-expression isoforms, and test for isoform usage changes with DEXSeq-based statistics.
"Analyze isoform switching" -> Import transcript quantification, test for dominant isoform changes, and assess functional consequences.
IsoformSwitchAnalyzeR (importRdata + isoformSwitchTestDEXSeq)library(IsoformSwitchAnalyzeR)
## Create switch analysis object
switchAnalyzeRlist <- importRdata(
isoformCountMatrix = salmonQuant$counts,
isoformRepExpression = salmonQuant$abundance,
designMatrix = data.frame(
sampleID = colnames(salmonQuant$counts),
condition = c('control', 'control', 'control', 'treatment', 'treatment', 'treatment')
),
isoformExonAnnoation = 'annotation.gtf',
isoformNtFasta = 'transcripts.fa'
)
## Filter lowly expressed isoforms
switchAnalyzeRlist <- preFilter(
switchAnalyzeRlist,
geneExpressionCutoff = 1, # Minimum TPM
isoformExpressionCutoff = 0,
removeSingleIsoformGenes = TRUE
)
Related skills
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or…
Validate protein designs using AlphaFold2 structure prediction. Use this skill when: (1) Validating designed sequences fold correctly, (2) P…
AlphaFold DB is a public repository of AI-predicted 3D protein structures for over 200 million proteins, maintained by DeepMind and EMBL-EBI…
Antibody design: epitope mapping, CDR engineering, bispecific construction.