We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be useful to have this code in a function:
source = file.path(system.file("rmarkdown", package="hbcABC"), "Rscripts", "singlecell", "clustering_seurat.R") file.copy(source, "clustering.r")
so we can just call copy_clustering_seurat(final_location). Good things about making functions:
copy_clustering_seurat(final_location)
The text was updated successfully, but these errors were encountered:
That's essentially what the prepareTemplate() function in bcbioBase does, which we can modify to copy scripts instead: https://github.com/hbc/bcbioBase/blob/master/R/prepareTemplate.R
prepareTemplate()
Sorry, something went wrong.
No branches or pull requests
It would be useful to have this code in a function:
so we can just call
copy_clustering_seurat(final_location)
. Good things about making functions:The text was updated successfully, but these errors were encountered: