Skip to content
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

Example JSON not working #235

Open
lcamillo opened this issue Aug 31, 2021 · 3 comments
Open

Example JSON not working #235

lcamillo opened this issue Aug 31, 2021 · 3 comments
Assignees

Comments

@lcamillo
Copy link

lcamillo commented Aug 31, 2021

Describe the bug

I have just cloned and installed the pipeline using conda, and caper using pip. However, I cannot run the example JSON. Any help would be much appreciated!

OS/Platform

  • OS/Platform: Linux (Brown's CS cluster)
  • Conda version: 4.10.3
  • Pipeline version: 1.9.0
  • Caper version: 1.6.3

Caper configuration file

Screen Shot 2021-08-31 at 3 28 13 PM

Input JSON file

https://storage.googleapis.com/encode-pipeline-test-samples/encode-chip-seq-pipeline/ENCSR000DYI_subsampled_chr19_only.json

Troubleshooting result

Screen Shot 2021-08-31 at 3 32 49 PM

Screen Shot 2021-08-31 at 3 30 28 PM

Screen Shot 2021-08-31 at 3 31 21 PM

Screen Shot 2021-08-31 at 3 31 49 PM

And so on.

@gabdank gabdank assigned gabdank and leepc12 and unassigned gabdank Sep 3, 2021
@leepc12
Copy link
Contributor

leepc12 commented Sep 6, 2021

This looks like a Conda issue. How did you install Conda? Did you use mamba?
Please uninstall the environment and try without mamba

$ scripts/uninstall_conda_env.sh
$ scripts/install_conda_env.sh # do not add mamba here

Installing without mamba can take long.
If this method doesn't work then try to use docker or singularity methods.

@lcamillo
Copy link
Author

lcamillo commented Sep 6, 2021

I installed Conda through Miniconda3 using the guide provided. I had used mamba to install the pipeline but even without it the same error occurs (undefined symbol ...).

Is there any short guide to use the ENCODE pipeline with docker or singularity?

@leepc12
Copy link
Contributor

leepc12 commented Sep 6, 2021

Please try to manually re-install bowtie2 (latest) in your Conda environemnt

$ source activate encode-chip-seq-pipeline
$ which bowtie2 # check if bowtie2 binaries are under the environment bin/ folder
$ bowtie2 --version
$ conda uninstall bowtie2
$ conda install bowtie2
$ bowtie2 --version # check version after manual installation

Most HPC clusters do not support docker so if you are working on an HPC try with singularity. If you are working locally on your computer then install docker and simply add --docker to caper run/submit command line.

For HPCs,

$ singularity --version # check if singularity binary exists
$ caper run/submit chip.wdl ... --singularity # caper will automatically parse the singularity image of the pipeline from WDL

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants