Skip to content

Commit

Permalink
Bump version to 4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulthran committed Apr 23, 2024
1 parent 6d92b01 commit 940d041
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

__conda_url=https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
__version_tag=$(if git describe --tags >/dev/null 2>&1 ; then git describe --tags; else echo v4.5.2; fi) # <--- Update this on each version release
__version_tag=$(if git describe --tags >/dev/null 2>&1 ; then git describe --tags; else echo v4.6.0; fi) # <--- Update this on each version release
__version_tag="${__version_tag:1}" # Remove the 'v' prefix

read -r -d '' __usage <<-'EOF'
Expand Down
2 changes: 1 addition & 1 deletion src/sunbeamlib/qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def filter_ids(fp_in: Path, fp_out: Path, ids: Set[str], log: TextIO) -> None:
Args:
fp_in (Path): Path to the input FASTQ file.
fp_out (Path): Path to the output FASTQ file.
ids (List[str]): Set of IDs to filter.
ids (Set[str]): Set of IDs to filter.
log (TextIO): TextIO object to write log messages.
Returns:
Expand Down

0 comments on commit 940d041

Please sign in to comment.