Skip to content

Commit

Permalink
2024/10/25-15:22:27 (Linux cray unknown)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbenner committed Oct 25, 2024
1 parent 4eeb297 commit 7b8c3c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/track_coverage.rs → src/bam_coverage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ use futures::executor::block_on_stream;
use crate::bam::{BamFile, bam_import_genome};
use crate::genome::Genome;
use crate::error::ArgumentError;
use crate::log;

use crate::coverage::{CoverageError, CoverageConfig, OptionCoverage, FraglenEstimate};
use crate::read_stream::ReadStream;
Expand Down
2 changes: 1 addition & 1 deletion src/bin/bam-to-bigwig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use plotters::prelude::*;
use rustynetics::bigwig::OptionBigWig;
use rustynetics::coverage::OptionCoverage;
use rustynetics::track_generic::GenericTrack;
use rustynetics::track_coverage::bam_coverage;
use rustynetics::bam_coverage::bam_coverage;

/* -------------------------------------------------------------------------- */

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
// Public crates
pub mod alphabet;
pub mod bam;
pub mod bam_coverage;
pub mod bbi;
pub mod bgzf;
pub mod bigwig;
Expand Down Expand Up @@ -52,7 +53,6 @@ pub mod error;
pub mod track;
pub mod track_bed;
pub mod track_bigwig;
pub mod track_coverage;
pub mod track_generic;
pub mod track_generic_coverage;
pub mod track_granges;
Expand Down

0 comments on commit 7b8c3c1

Please sign in to comment.