-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
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
Fix input error #161
Fix input error #161
Conversation
GWAS/liftover.ipynb
Outdated
@@ -255,11 +255,11 @@ | |||
" import os.path\n", | |||
" input_path=${_input[0]:r}\n", | |||
" output_path=${_output[0]:r}\n", | |||
" fr = ${fr}\n", | |||
" to = ${to}\n", | |||
" fr = f'${fr}'\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove f
. There is no need for that I believe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested the code. removing f
causes an error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To clarify, you are saying this does not work? I don't think so. Please double check
fr = "${fr}"
(without f
but with quote on the string)
GWAS/liftover.ipynb
Outdated
@@ -167,7 +167,7 @@ | |||
"# Rename Variant ID\n", | |||
"parameter: rename = True\n", | |||
"# Container\n", | |||
"parameter: container = str" | |||
"parameter: container = '.'" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make container default as empty string ''
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
@changebio there is a merge conflict ... please resolve that. |
fixed |
No description provided.