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

update path variables in logger output

parent 31ffef27
Branches
Tags
1 merge request!5Resolve "Add mapping and trimming"
Pipeline #1026 passed with stage
in 7 seconds
......@@ -45,14 +45,14 @@ def check_tools():
trimgalore_path = shutil.which("trim_galore")
if trimgalore_path:
logger.info('Found trimgalore: %s', fastqc_path)
logger.info('Found trimgalore: %s', trimgalore_path)
else:
logger.error('Missing trimgalore')
raise Exception('Missing trimgalore')
cutadapt_path = shutil.which("cutadapt")
if cutadapt_path:
logger.info('Found cutadapt: %s', fastqc_path)
logger.info('Found cutadapt: %s', cutadapt_path)
else:
logger.error('Missing cutadapt')
raise Exception('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