-
Notifications
You must be signed in to change notification settings - Fork 7
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
looper.write_sample_yaml
pre-submit function assumes the sample has sample_name
as an attribute
#541
Comments
yep that's a bug |
Needs to reference the sample_table_index: |
I apologize for going for style points and renaming my sample table indexes |
Getting test failures when making the change, however, so it requires a bit more digging. |
Whoops, I forgot to use that as an index: So the above solution works fine and all tests pass with the above commit on dev branch. |
Was able to run my pipeline using |
I was trying to submit jobs by leveraging the
write_sample_yaml
pre-submit function. This was mypipeline_interface.yaml
:However, before any submission scripts are written, I get the following stack trace:
You can follow the breadcrumbs and look into this
_get_yaml_path
function to see that it uses a hard-coded sample name attribute key that comes frompeppy.const
. I believe this is a bug, correct? I've renamed mysample_table_index
column name toid
.I am able to resolve this issue by reverting and making my
sample_table_index
bysample_name
.The text was updated successfully, but these errors were encountered: