Loading .gitignore +4 −0 Original line number Diff line number Diff line # # Mac .DS_STORE .env # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] Loading CHANGELOG.md +4 −0 Original line number Diff line number Diff line # Change log All notable changes to this project will be documented in this file. ## Version 2.3.4 2019-01-14 - TRANSIT: - Minor bug fixes related to flags in Resampling and HMM ## Version 2.3.3 2018-12-06 - TRANSIT: - Minor bug fixes related to flags in HMM Loading README.md +1 −1 Original line number Diff line number Diff line # TRANSIT 2.3.3 # TRANSIT 2.3.4 [](https://travis-ci.org/mad-lab/transit) [](http://transit.readthedocs.io/en/latest/?badge=latest) Loading src/pytransit/__init__.py +1 −1 Original line number Diff line number Diff line Loading @@ -2,6 +2,6 @@ __all__ = ["transit_tools", "tnseq_tools", "norm_tools", "stat_tools"] __version__ = "v2.3.3" __version__ = "v2.3.4" prefix = "[TRANSIT]" src/pytransit/analysis/hmm.py +3 −0 Original line number Diff line number Diff line Loading @@ -226,6 +226,7 @@ class HMMMethod(base.SingleConditionMethod): normalization = wxobj.hmmNormChoice.GetString(wxobj.hmmNormChoice.GetCurrentSelection()) LOESS = False LOESS = wxobj.hmmLoessCheck.GetValue() #Get output path name = transit_tools.basename(ctrldata[0]) Loading Loading @@ -377,6 +378,8 @@ class HMMMethod(base.SingleConditionMethod): self.output.write("# \n") self.output.write("# Mean:\t%2.2f\n" % (numpy.average(reads_nz))) self.output.write("# Median:\t%2.2f\n" % numpy.median(reads_nz)) self.output.write("# Normalization:\t%s\n" % self.normalization) self.output.write("# LOESS Correction:\t%s\n" % str(self.LOESS)) self.output.write("# pins (obs):\t%f\n" % pins_obs) self.output.write("# pins (est):\t%f\n" % pins) self.output.write("# Run length (r):\t%d\n" % r) Loading Loading
.gitignore +4 −0 Original line number Diff line number Diff line # # Mac .DS_STORE .env # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] Loading
CHANGELOG.md +4 −0 Original line number Diff line number Diff line # Change log All notable changes to this project will be documented in this file. ## Version 2.3.4 2019-01-14 - TRANSIT: - Minor bug fixes related to flags in Resampling and HMM ## Version 2.3.3 2018-12-06 - TRANSIT: - Minor bug fixes related to flags in HMM Loading
README.md +1 −1 Original line number Diff line number Diff line # TRANSIT 2.3.3 # TRANSIT 2.3.4 [](https://travis-ci.org/mad-lab/transit) [](http://transit.readthedocs.io/en/latest/?badge=latest) Loading
src/pytransit/__init__.py +1 −1 Original line number Diff line number Diff line Loading @@ -2,6 +2,6 @@ __all__ = ["transit_tools", "tnseq_tools", "norm_tools", "stat_tools"] __version__ = "v2.3.3" __version__ = "v2.3.4" prefix = "[TRANSIT]"
src/pytransit/analysis/hmm.py +3 −0 Original line number Diff line number Diff line Loading @@ -226,6 +226,7 @@ class HMMMethod(base.SingleConditionMethod): normalization = wxobj.hmmNormChoice.GetString(wxobj.hmmNormChoice.GetCurrentSelection()) LOESS = False LOESS = wxobj.hmmLoessCheck.GetValue() #Get output path name = transit_tools.basename(ctrldata[0]) Loading Loading @@ -377,6 +378,8 @@ class HMMMethod(base.SingleConditionMethod): self.output.write("# \n") self.output.write("# Mean:\t%2.2f\n" % (numpy.average(reads_nz))) self.output.write("# Median:\t%2.2f\n" % numpy.median(reads_nz)) self.output.write("# Normalization:\t%s\n" % self.normalization) self.output.write("# LOESS Correction:\t%s\n" % str(self.LOESS)) self.output.write("# pins (obs):\t%f\n" % pins_obs) self.output.write("# pins (est):\t%f\n" % pins) self.output.write("# Run length (r):\t%d\n" % r) Loading