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
The new lines ("\n") and write std_out (">") are causing problems for subprocess.call
I originally encountered this issue when running meme_ame having broken down the command, wehre first there was a Unknown command argument: "\n": "\n", which i was able to trace to the -
"""
cmd
"""
Subsequently after fixing this, subprocess.call does not recognize ">"
Yes, making it shell=True also could work, but the consensus on stackoverflow was that it's a bit riskier to use shell=True (in certain cases, accidental user input can mess things up), hence the stdout file approach.
toolkit/ngs_toolkit/general.py
Lines 1400 to 1408 in 3f828b2
The new lines ("\n") and write std_out (">") are causing problems for subprocess.call
I originally encountered this issue when running meme_ame having broken down the command, wehre first there was a Unknown command argument: "\n": "\n", which i was able to trace to the -
"""
cmd
"""
Subsequently after fixing this, subprocess.call does not recognize ">"
The fix:
This actually generates the shuffled background. I'm not sure why ">" is not accepted, I did some googling but it was not successful
The text was updated successfully, but these errors were encountered: