Converting the python list format into a single string will increase readability and allow for advanced users to run that cmd in isolation if need be with a simple copy/paste.
Example Commands:
module purge && ml nextflow
nextflow run $HOME/mashwrapper/main.nf -profile testUse,singularity --custom_config_base $HOME/mashwrapper/conf
grep -B 1 "'mash'" results/resultsByIsolate/subERR125190_run.log
Current Log Output:
06/14/2022 04:15:20 PM - This is the command...
['mash', 'dist', 'myMashDatabase.msh', '-r', 'myCatFile', '-p', '2', '-S', '42']
--
06/14/2022 04:15:24 PM - This is the command...
['mash', 'dist', '-r', '-m', '2', 'myMashDatabase.msh', 'myCatFile', '-p', '2', '-S', '123456']
Proposed Log Output:
06/14/2022 04:15:20 PM - This is the command...
% mash dist myMashDatabase.msh -r myCatFile -p 2 -S 42
--
06/14/2022 04:15:24 PM - This is the command...
% mash dist -r -m 2 myMashDatabase.msh myCatFile -p 2 -S 123456
Description of feature
Converting the python list format into a single string will increase readability and allow for advanced users to run that cmd in isolation if need be with a simple copy/paste.
Example Commands:
Current Log Output:
Proposed Log Output: