Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Always remove temporary VCF files #266

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ We can download some for you! InSilicoSeq can download random genomes from the n
The command

```shell
iss generate --ncbi bacteria -u 10 --model MiSeq --output ncbi_reads
iss generate --ncbi bacteria -U 10 --model MiSeq --output ncbi_reads
```

will generate 1 million reads from 10 random bacterial genomes.
Expand Down
2 changes: 1 addition & 1 deletion iss/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def generate_reads(args):
# and reads were appended to the same temp file.
temp_R1 = [temp_file + "_R1.fastq" for temp_file in temp_file_list]
temp_R2 = [temp_file + "_R2.fastq" for temp_file in temp_file_list]
temp_mut = [temp_file + ".vcf" for temp_file in temp_file_list] if args.store_mutations else []
temp_mut = [temp_file + ".vcf" for temp_file in temp_file_list]
util.concatenate(temp_R1, args.output + "_R1.fastq")
util.concatenate(temp_R2, args.output + "_R2.fastq")
if args.store_mutations:
Expand Down
Loading