Skip to content

Commit

Permalink
Fix log message, make isort happy for ebfilter wrapper.
Browse files Browse the repository at this point in the history
  • Loading branch information
Clemens Messerschmidt committed Jan 21, 2022
1 parent 18b8362 commit eff57f3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions snappy_wrappers/wrappers/eb_filter/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""

import os

from snakemake import shell

__author__ = "Manuel Holtgrewe <manuel.holtgrewe@bihealth.de>"
Expand Down
2 changes: 1 addition & 1 deletion snappy_wrappers/wrappers/mutect2/contamination/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
exec &> >(tee -a "{snakemake.log.log}" >&2)
else
rm -f "{snakemake.log.log}" && mkdir -p $(dirname {snakemake.log.log})
echo "No tty,.log.logging disabled" >"{snakemake.log.log}"
echo "No tty, logging disabled" >"{snakemake.log.log}"
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion snappy_wrappers/wrappers/mutect2/filter/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
exec &> >(tee -a "{snakemake.log.log}" >&2)
else
rm -f "{snakemake.log.log}" && mkdir -p $(dirname {snakemake.log.log})
echo "No tty,.log.logging disabled" >"{snakemake.log.log}"
echo "No tty, logging disabled" >"{snakemake.log.log}"
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion snappy_wrappers/wrappers/mutect2/pileup/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
exec &> >(tee -a "{snakemake.log.log}" >&2)
else
rm -f "{snakemake.log.log}" && mkdir -p $(dirname {snakemake.log.log})
echo "No tty,.log.logging disabled" >"{snakemake.log.log}"
echo "No tty, logging disabled" >"{snakemake.log.log}"
fi
fi
Expand Down

0 comments on commit eff57f3

Please sign in to comment.