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
line 239: if [ -d "barcode01" ]
if [ -d "barcode01" ]
get Error when running samples that don't contain barcode01 (e.g. my pool contains barcode 16-18)
solved it by replacing line 239 with if ls -d "barcode"*
if ls -d "barcode"*
but there might be a more beautiful bash solution.
The text was updated successfully, but these errors were encountered:
Thanks for reporting @FranBonath 👍 Will be fixed in #12
Sorry, something went wrong.
Merge pull request #11 from yuukiiwa/dev
926ea19
solve nf-core/nanoseq merge conflict
Merge pull request #11 from nf-core/dev
30e862c
Dev
No branches or pull requests
line 239:
if [ -d "barcode01" ]
get Error when running samples that don't contain barcode01 (e.g. my pool contains barcode 16-18)
solved it by replacing line 239 with
if ls -d "barcode"*
but there might be a more beautiful bash solution.
The text was updated successfully, but these errors were encountered: