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
Just a small bug report.
If you use load_VCF_Strelka before loading the tidyr package, the function returns this error:
Code x=TINC::load_VCF_Strelka("Outputs/Resequenced/somatic.snvs.vcf.gz")
x=TINC::load_VCF_Strelka("Outputs/Resequenced/somatic.snvs.vcf.gz")
Output Error in separate(., ID, into = c("chr", "from", "to", "ref", "alt"), : could not find function "separate"
Error in separate(., ID, into = c("chr", "from", "to", "ref", "alt"), : could not find function "separate"
Loading tidyr with library(tidyr) beforehand solves the issue
library(tidyr)
The text was updated successfully, but these errors were encountered:
Hi @ronkesm kudos for catching it. Fixed, thank you for reporting the bug. S.
Sorry, something went wrong.
Militeee
No branches or pull requests
Just a small bug report.
If you use load_VCF_Strelka before loading the tidyr package, the function returns this error:
Code
x=TINC::load_VCF_Strelka("Outputs/Resequenced/somatic.snvs.vcf.gz")
Output
Error in separate(., ID, into = c("chr", "from", "to", "ref", "alt"), : could not find function "separate"
Loading tidyr with
library(tidyr)
beforehand solves the issueThe text was updated successfully, but these errors were encountered: