Skip to content

Commit

Permalink
Merge pull request #77 from databio/ref_validator_refactoring
Browse files Browse the repository at this point in the history
Ref validator refactoring
  • Loading branch information
khoroshevskyi authored Sep 19, 2024
2 parents ea85fbd + 50f65e0 commit e34e4af
Show file tree
Hide file tree
Showing 14 changed files with 647 additions and 544 deletions.
2 changes: 1 addition & 1 deletion bedboss/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.0"
__version__ = "0.5.0"
2 changes: 1 addition & 1 deletion bedboss/bedbuncher/tools/bedsetStat.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ if (is.null(opt$json)) {
#'
#' Calculates how many regionsets (bedfiles) overlap at least said percentage
#' of regions included in the universe. The universe is considered a union of
#' all regionsets (bedfiles) in the colection of
#' all regionsets (bedfiles) in the collection of
#' regionsets (bedset, or set of bedfiles)
#'
#' @param queryList GRangesList object with regionsets to be considered
Expand Down
2 changes: 1 addition & 1 deletion bedboss/bedmaker/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_chrom_sizes(genome: str, rfg_config: Union[str, Path]) -> str:
"""

_LOGGER.info("Determining path to chrom.sizes asset via Refgenie.")
# initalizing refginie config file
# initializing refginie config file
rgc = get_rgc(rfg_config=rfg_config)

try:
Expand Down
2 changes: 1 addition & 1 deletion bedboss/bedstat/tools/regionstat.R
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ doItAall <- function(query, fileId, genome, cellMatrix) {
)
}

# QThist plot
# QThis plot
if (exists("bedmeta")){
if ("mean_region_width" %in% names(bedmeta)){
run_plot = FALSE
Expand Down
2 changes: 1 addition & 1 deletion bedboss/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def convert_universe(
def check_requirements():
from bedboss.bedboss import requirements_check

print("Checking piplines requirements...")
print("Checking pipelines requirements...")
requirements_check()


Expand Down
4 changes: 1 addition & 3 deletions bedboss/refgenome_validator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
from bedboss.refgenome_validator.genome_model import GenomeModel
from bedboss.refgenome_validator.refgenomevalidator import RefValidator

# __all__ = ["GenomeModel"]
from bedboss.refgenome_validator.main import ReferenceValidator
Loading

0 comments on commit e34e4af

Please sign in to comment.