Rename all the scripts to start with htsw-
[htsworkflow.git] / scripts / htsw-qseq2fastq
diff --git a/scripts/htsw-qseq2fastq b/scripts/htsw-qseq2fastq
new file mode 100755 (executable)
index 0000000..555e668
--- /dev/null
@@ -0,0 +1,6 @@
+#!/usr/bin/python
+import sys
+from htsworkflow.pipelines.qseq2fastq import main
+
+if __name__ == "__main__":    
+    sys.exit(main(sys.argv[1:]))