We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c951b0a commit f9769bcCopy full SHA for f9769bc
FASTQ_to_FASTA.py
@@ -17,7 +17,7 @@ def main(fastq, fasta, gz):
17
line_n =0
18
line_buffer = 0
19
line_id = 1
20
- if gz: ### if gz argument is provided it will write out a gz file else normal
+ if gz == '1': ### if gz argument is provided it will write out a gz file else normal
21
outfile = gzip.open(fasta+'.gz', 'w')
22
else:
23
outfile = open(fasta, 'w')
0 commit comments