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
An error occurred when running with spliz nextflow pipeline
ValueError: The truth value of a DataFrame is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
It seemed that the problem can be located in file calc_splizvd.py line 387
calc_splizvd.py
df["cov"] = df["gene"].map(grouped.apply(lambda x: x['z_Start'].cov(x['z_End'])))
And it should be like this
df["cov"] = df["gene"].map(grouped.apply(lambda x: x['z_Start'].cov(x['z_End'])).to_dict())
The very same problem also exists as mentioned in juliaolivieri/SpliZ_pipeline#10
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the bug
An error occurred when running with spliz nextflow pipeline
It seemed that the problem can be located in file
calc_splizvd.py
line 387And it should be like this
The very same problem also exists as mentioned in juliaolivieri/SpliZ_pipeline#10
The text was updated successfully, but these errors were encountered: