We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2ded56e + 07c81f9 commit 517b9c7Copy full SHA for 517b9c7
src/TRACESPipe.sh
@@ -166,8 +166,8 @@ CHECK_META_INFO () {
166
#
167
168
CHECK_GZIP_FILES () {
169
- FILE_GZ1=`file ../input_data/$1 | grep gzip | wc -l`;
170
- FILE_GZ2=`file ../input_data/$2 | grep gzip | wc -l`;
+ FILE_GZ1=`file -L ../input_data/$1 | grep gzip | wc -l`;
+ FILE_GZ2=`file -L ../input_data/$2 | grep gzip | wc -l`;
171
if [[ "$FILE_GZ1" != "1" ]] || [[ "$FILE_GZ2" != "1" ]];
172
then
173
echo -e "\e[31mERROR: the input reads are not gzipped!\e[0m"
0 commit comments