Skip to content

Commit

Permalink
chore: improved error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvollger committed Jan 10, 2024
1 parent 5824b74 commit b6da9fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ pub fn main() -> Result<(), Error> {
}
#[cfg(not(feature = "predict"))]
{
log::error!("Predictions are not enabled. Please recompile with the --features predict flag.\nIf installed via bioconda you will not be able to do predictions. Recent size limits on packages prevent me from including the pytorch libraries necessary for predictions in bioconda. Please install via Cargo following the directions here: https://fiberseq.github.io/fibertools-rs/INSTALL.html."
log::error!("m6A predictions are not enabled with this install of fibertools.");
log::error!("Please recompile with: `--all-features`.");
log::error!("If fibertools was installed via bioconda you will not be able to do m6A predictions. Recent size limits on packages prevent us from including the pytorch libraries necessary for predictions within the bioconda install. Please install via Cargo following the directions here: https://fiberseq.github.io/fibertools-rs/INSTALL.html."
)
}
}
Expand Down

0 comments on commit b6da9fe

Please sign in to comment.