We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a1738b commit 139e23eCopy full SHA for 139e23e
src/common.h
@@ -1,7 +1,7 @@
1
#ifndef COMMON_H
2
#define COMMON_H
3
4
-#define FASTP_VER "0.13.0"
+#define FASTP_VER "0.13.1"
5
6
#define _DEBUG false
7
src/options.cpp
@@ -50,13 +50,13 @@ bool Options::validate() {
50
}
51
52
if(!out1.empty()) {
53
- check_file_writable(out1);
+ //check_file_writable(out1);
54
if(out1 == out2) {
55
error_exit("read1 output (--out1) and read1 output (--out2) should be different");
56
57
58
if(!out2.empty()) {
59
- check_file_writable(out2);
+ //check_file_writable(out2);
60
61
62
if(compression < 1 || compression > 9)
0 commit comments