I am trying to pass BioPython sequences to Ilya Stepanov\'s implementation of Ukkonen\'s suffix tree algorithm in iPython\'s notebook environment. I am stumbling on the argp
Here is my code which works well and I won't worry about the environment changed.
import sys temp_argv = sys.argv try: sys.argv = [''] print(sys.argv) args = argparse.parser_args() finally: sys.argv = temp_argv print(sys.argv)