Skip to content
Snippets Groups Projects
Commit 31ffef27 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

update path variables

parent 4b135733
Branches
Tags
1 merge request!5Resolve "Add mapping and trimming"
Pipeline #1025 passed with stage
in 7 seconds
......@@ -44,14 +44,14 @@ def check_tools():
logger.info('Checking for required libraries and components on this system')
trimgalore_path = shutil.which("trim_galore")
if fastqc_path:
if trimgalore_path:
logger.info('Found trimgalore: %s', fastqc_path)
else:
logger.error('Missing trimgalore')
raise Exception('Missing trimgalore')
cutadapt_path = shutil.which("cutadapt")
if fastqc_path:
if cutadapt_path:
logger.info('Found cutadapt: %s', fastqc_path)
else:
logger.error('Missing cutadapt')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment