Hi,
I am encountering a similar issue to the https://github.com/mrb20045/CaSilico/issues/3
Error in plot.window(...) : need finite 'xlim' values
Interestingly, this issue does not occur on a Windows system; the code executes without any errors there.
To address this issue on Linux, I added the following lines to my script to ensure the software continues running even if this error occurs:
run_CaSilico_with_error <- function(file_path) {
tryCatch({
run_CaSilico(file_path)
}, error = function(e) {
if (grepl("Error in plot.window", e$message)) {
message("Plotting error ignored: ", e$message)
} else {
stop(e)
}
})
}
However, despite this attempt, the software fails to produce the final output files, such as Spacers_Information.Html and Off_Targets_Information.Html.
Could you please provide guidance on how to resolve this issue? Any assistance would be greatly appreciated.
Thank you.
Hi,
I am encountering a similar issue to the https://github.com/mrb20045/CaSilico/issues/3
Error in plot.window(...) : need finite 'xlim' values
Interestingly, this issue does not occur on a Windows system; the code executes without any errors there.
To address this issue on Linux, I added the following lines to my script to ensure the software continues running even if this error occurs:
run_CaSilico_with_error <- function(file_path) {
tryCatch({
run_CaSilico(file_path)
}, error = function(e) {
if (grepl("Error in plot.window", e$message)) {
message("Plotting error ignored: ", e$message)
} else {
stop(e)
}
})
}
However, despite this attempt, the software fails to produce the final output files, such as Spacers_Information.Html and Off_Targets_Information.Html.
Could you please provide guidance on how to resolve this issue? Any assistance would be greatly appreciated.
Thank you.