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
GraphBin/src/graphbin/utils/parsers/canu_parser.py
Line 170 in ab93fc5
GraphBin/src/graphbin/utils/parsers/megahit_parser.py
Line 191 in ab93fc5
GraphBin/src/graphbin/utils/parsers/flye_parser.py
Line 261 in ab93fc5
GraphBin/src/graphbin/utils/parsers/miniasm_parser.py
GraphBin/src/graphbin/utils/parsers/sga_parser.py
Line 172 in ab93fc5
GraphBin/src/graphbin/utils/parsers/spades_parser.py
Line 233 in ab93fc5
mkdir -p doesn't work in windows
mkdir -p
Suggest using something like the following which should be OS agnostic
if not os.path.isdir(output_bins_path): os.makedirs(output_bins_path, exist_ok=True)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
GraphBin/src/graphbin/utils/parsers/canu_parser.py
Line 170 in ab93fc5
GraphBin/src/graphbin/utils/parsers/megahit_parser.py
Line 191 in ab93fc5
GraphBin/src/graphbin/utils/parsers/flye_parser.py
Line 261 in ab93fc5
GraphBin/src/graphbin/utils/parsers/miniasm_parser.py
Line 170 in ab93fc5
GraphBin/src/graphbin/utils/parsers/sga_parser.py
Line 172 in ab93fc5
GraphBin/src/graphbin/utils/parsers/spades_parser.py
Line 233 in ab93fc5
mkdir -p
doesn't work in windowsSuggest using something like the following which should be OS agnostic
The text was updated successfully, but these errors were encountered: