Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
peter6866 committed Nov 13, 2024
1 parent bf8b4ce commit b5d7e1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tf-binding-rs"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "Fast transcription factor binding site prediction and FASTA manipulation in Rust"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions src/occupancy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ where
/// * `MotifError::DataError` - If there are issues creating the PWM DataFrame
///
/// # Example
/// ```no_run
/// use your_crate::occupancy::read_pwm_files;
/// ```ignore
/// use tf_binding_rs::occupancy::read_pwm_files;
///
/// let pwms = read_pwm_files("path/to/motifs.meme")?;
/// let pwms = read_pwm_files("path/to/motifs.meme").unwrap();
/// for (motif_id, pwm) in pwms {
/// println!("Found motif: {}", motif_id);
/// }
Expand Down

0 comments on commit b5d7e1e

Please sign in to comment.