Skip to content

Commit

Permalink
Slamdunk all snp threading bug resolved.
Browse files Browse the repository at this point in the history
  • Loading branch information
t-neumann committed Dec 19, 2019
1 parent dd0047d commit 88a8099
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion slamdunk/slamdunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def runAll(args) :

snpThread = n
if(snpThread > 1):
snpThread = snpThread / 2
snpThread = int(snpThread / 2)

#if (args.minQual == 0) :
# snpqual = 13
Expand Down
2 changes: 1 addition & 1 deletion slamdunk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

# Overall slamDunk version
__version__ = "0.4.0"
__version__ = "0.4.1"
# File format version of BAM files from slamdunk filter
__bam_version__ = "3"
# File format version of count files from slamdunk count
Expand Down

0 comments on commit 88a8099

Please sign in to comment.