Skip to content

Commit

Permalink
2024/10/30-16:48:24 (Linux VDI0092.zit.bam.de x86_64)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbenner committed Oct 30, 2024
1 parent 14e04d7 commit 2c70cf2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/granges_bam.rs
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,9 @@ impl GRanges {
///
/// # Example
///
/// ```rust
/// ```rust,ignore
/// use rustynetics::granges::GRanges;
///
/// let granges = GRanges::import_bam_single_end("http://example.com/file.bam", None)?;
/// ```
pub fn import_bam_single_end(filename: &str, options: Option<BamReaderOptions>) -> Result<Self, Box<dyn Error>> {
Expand Down Expand Up @@ -333,7 +335,9 @@ impl GRanges {
///
/// # Example
///
/// ```rust
/// ```rust,ignore
/// use rustynetics::granges::GRanges;
///
/// let granges = GRanges::import_bam_paired_end("http://example.com/file.bam", None)?;
/// ```
pub fn import_bam_paired_end(filename: &str, options: Option<BamReaderOptions>) -> Result<Self, Box<dyn Error>> {
Expand Down

0 comments on commit 2c70cf2

Please sign in to comment.