-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
__author__ = ["Jin Xu", "Nathan Sheffield", "Jason Smith"] | ||
__email__ = "[email protected]" | ||
__version__ = "0.9.0" | ||
__version__ = "0.9.1" | ||
|
||
|
||
from argparse import ArgumentParser | ||
|
@@ -874,8 +874,10 @@ def main(): | |
os.chmod(tempdir, 0o771) | ||
pm.clean_add(tempdir) | ||
|
||
unmap_fq1 = unmap_fq1 + ".gz" | ||
unmap_fq2 = unmap_fq2 + ".gz" | ||
# If there are no prealignments, unmap_fq1 will be unzipped | ||
if pypiper.is_gzipped_fastq(unmap_fq1): | ||
unmap_fq1 = unmap_fq1 + ".gz" | ||
unmap_fq2 = unmap_fq2 + ".gz" | ||
|
||
bt2_index = os.path.join(rgc.seek(args.genome_assembly, BT2_IDX_KEY)) | ||
if not bt2_index.endswith(args.genome_assembly): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters