We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Breaks on testing due to subsampling being false but getting checked for true instead
The text was updated successfully, but these errors were encountered:
Was a systems issue with osx using md5 instead of md5sum (and the function passing because it skipped over that part)
Sorry, something went wrong.
This should work for osx:
""" echo -e "{params.r1_checksum} {input.r1_file}\n{params.r2_checksum} {input.r2_file}" > {output.checksums} find {params.check_files}*.fastq.gz -type f | xargs openssl md5 | sed -e 's/^MD5(\(.*\))= \(.*\)/\\2 \\1/' > check.txt diff check.txt {output.checksums} ( [ "{params.subsampled}" = "True" ] && touch {output.validated}) || cp {output.checksums} {output.validated} """
No branches or pull requests
Breaks on testing due to subsampling being false but getting checked for true instead
The text was updated successfully, but these errors were encountered: