Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Patch for windows home folder
Browse files Browse the repository at this point in the history
  • Loading branch information
a-slide committed Mar 4, 2019
1 parent bedf3e3 commit 50b74fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pycoQC/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

# Define self package variable
__version__ = '2.2.2'
__version__ = '2.2.3'
__all__ = ["pycoQC", "common"]
__description__="""
PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data
Expand Down
2 changes: 1 addition & 1 deletion pycoQC/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def parse_config_file(config_file):
logger.debug ("\t\tFile not found, non-readable or invalid")

# Second, look into default system folder
home=os.environ['HOME']
home=os.path.expanduser('~')
for config_file in [home+"/.pycoQC", home+"/.config/pycoQC/config"]:
logger.debug ("\tTry to read config file from system directory:{}".format(config_file))
try:
Expand Down

0 comments on commit 50b74fb

Please sign in to comment.