Installation and Usage

If you have paired-end umi-tagged fastqs, you can run the ACCESS fastq to bam workflow with the following steps

Step 1: Create a virtual environment.

Option (A) - if using cwltool

If you are using cwltool only, please proceed using python 3.9 as done below:

Here we can use either virtualenvarrow-up-right or condaarrow-up-right. Here we will use conda.

python3-conda-virtualenv
conda create --name my_project python=3.9
conda activate my_project

If you are using toil, python 3 is required. Please install using Python 3.9 as done below:

Here we can use either virtualenvarrow-up-right or condaarrow-up-right. Here we will use conda.

python3-conda-virtaulenv
conda create --name my_project python=3.9
conda activate my_project
circle-info

Once you execute the above command you will see your bash prompt something on this lines:

bash-prompt-example
(my_project)[server]$

Step 2: Clone the repository

git-clone-with-submodule
git clone --recursive --branch 3.0.4 https://github.com/msk-access/nucleo.git
circle-info

Note: Change 3.0.4 to the latest stable release of the pipeline

Step 3: Install requirements using pip

We have already specified the version of cwltool and other packages in the requirements.txt file. Please use this to install.

Step 4: Check if you have singularity and nodejs for HPC

For HPC normally singularity is used for containers. Thus please make sure that is installed. For JUNO, you can do the following:

We also need to make sure nodejs is installed, this can be installed using conda:

Step 5: Generate an inputs file

Next, you must generate a proper input file in either jsonarrow-up-right or yamlarrow-up-right format.

For details on how to create this file, please follow this example (there is a minimal example of what needs to be filled in at the end of the page):

Inputs Descriptionchevron-right

It's also possible to create and fill in a "template" inputs file using this command:

circle-exclamation
circle-info

Note: To see help for the inputs for cwl workflow you can use: toil-cwl-runner nucleo.cwl --help

Once we have successfully installed the requirements we can now run the workflow using cwltool/toil .

Step 6: Run the workflow

Here we show how to use cwltoolarrow-up-right to run the workflow on a single machine, such as a laptop

Run the workflow with a given set of input using cwltoolarrow-up-right on single machine

circle-check

Last updated

Was this helpful?