Skip to content

Commit

Permalink
chore: fix web links.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvollger committed Aug 20, 2024
1 parent fb4fcf4 commit faf1549
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,12 @@ pub enum Commands {
Fire(FireOptions),
/// Extract fiberseq data into plain text files.
///
/// See https://fiberseq.github.io/fibertools-rs/docs/extract.html for a description of the outputs.
/// See https://fiberseq.github.io/fibertools/extracting/extract.html for a description of the outputs.
#[clap(visible_aliases = &["ex", "e"])]
Extract(ExtractOptions),
/// This command centers fiberseq data around given reference positions. This is useful for making aggregate m6A and CpG observations, as well as visualization of SVs.
///
/// See https://fiberseq.github.io/fibertools-rs/docs/center.html for a description of the output.
/// See https://fiberseq.github.io/fibertools/extracting/center.html for a description of the output.
#[clap(visible_aliases = &["c", "ct"])]
Center(CenterOptions),
/// Infer footprints from fiberseq data
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub fn main() -> Result<(), Error> {
"\n{}\n\t{}\n\t{}\n",
"WARNING: m6A predictions are slower without the pytorch backend.".bright_yellow().bold(),
"Consider recompiling via cargo with: `--all-features`.",
"For detailed instructions see: https://fiberseq.github.io/fibertools-rs/INSTALL.html."
"For detailed instructions see: https://fiberseq.github.io/fibertools/install.html."
);
subcommands::predict_m6a::read_bam_into_fiberdata(predict_m6a_opts);
}
Expand Down

0 comments on commit faf1549

Please sign in to comment.