You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paste the full deepTools command that produces the issue below
deepTools/3.5.4 > estimateScaleFactor --bamfiles ../../datas/deepTools/phiX.bam ../../datas/deepTools/phiX.bam --numberOfSamples 1000
Traceback (most recent call last):
File "/opt/gensoft/exe/deepTools/3.5.4/bin/estimateScaleFactor", line 8, in <module>
sys.exit(main())
File "/opt/gensoft/exe/deepTools/3.5.4/venv/lib/python3.8/site-packages/deeptools/estimateScaleFactor.py", line 105, in main
args = parser.parse_args(args)
NameError: name 'parser' is not defined
Welcome to deepTools GitHub repository! Before opening the issue please check
that the following requirements are met :
deeptools --version
) and your pythonversion (
python --version
) below.deepTools 3.5.4 installed from release tag: https://github.com/deeptools/deepTools/archive/3.5.4.tar.gz
seems to me that as ParseArguments returns the whole arguments already parsed.
line 105 should be just
args = parseArguments(args)
regards
Eric
The text was updated successfully, but these errors were encountered: