We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab22749 commit dc27835Copy full SHA for dc27835
reference_update.nf
@@ -19,7 +19,9 @@ process create_orthodb {
19
20
if [[ ${orthodb_path} =~ \$url_regex ]]; then wget ${orthodb_path}; else ln -s ${orthodb_path}; fi
21
22
- if [[ `ls *.fa.gz 2> /dev/null` ]]; then gunzip *.fa.gz ; cat *.fa > orthodb.fasta; fi
+ if [[ `ls *.fa.gz 2> /dev/null` ]]; then gunzip -f *.fa.gz ; fi
23
+
24
+ if [[ `ls *.fa 2> /dev/null` ]]; then cat *.fa > orthodb.fasta; fi
25
"""
26
}
27
0 commit comments