We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I guess it is due to this part of the code (the mv)
# HMM aligning def hmmalign(hmm, sequencefile): base_name = replace_name(sequencefile, '') # Create a base name for output files subprocess.check_call("mkdir -p " + cl.o[0], shell=True) subprocess.check_call("mv " + base_name + ".* " + cl.o[0], shell=True) subprocess.check_call('hmmalign --trim -o ' + base_name + '.sto ' + hmm + ' ' + cl.o[0] + '/' + sequencefile, shell=True) subprocess.check_call('seqmagick convert ' + base_name + '.sto ' + base_name + '_conv_.fa', shell=True)
The text was updated successfully, but these errors were encountered:
Fixed
Sorry, something went wrong.
Merge pull request #4 from geronimp/geronimp-pathway
cf3496c
Geronimp pathway
No branches or pull requests
I guess it is due to this part of the code (the mv)
The text was updated successfully, but these errors were encountered: