8000 Specify pScreenAdjusted argument depending on analysis method by jma1991 · Pull Request #113 · nf-core/rnasplice · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Specify pScreenAdjusted argument depending on analysis method #113

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/run_stager.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ library(stageR)

stripVersion <- function(x) {

substr(x, 1, 15)
sub("\\..*", "", x)

}

Expand Down Expand Up @@ -148,7 +148,7 @@ object <- stageRTx(
pScreen = output[["pScreen"]],
pConfirmation = output[["pConfirmation"]],
tx2gene = output[["tx2gene"]],
pScreenAdjusted = FALSE
pScreenAdjusted = switch(analysis, "dexseq" = TRUE, "drimseq" = FALSE)
)


Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,13 @@ profiles {
}
docker {
docker.enabled = true
docker.userEmulation = true
conda.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
docker.runOptions = '-u $(id -u):$(id -g)'
}
arm {
docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64'
Expand Down
0