Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: sync main to dev #77

Merged
merged 3 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions AmpliGone/AmpliGone.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
https://github.com/RIVM-bioinformatics/AmpliGone
"""


import argparse
import concurrent.futures as cf
import multiprocessing
Expand Down Expand Up @@ -75,7 +74,7 @@ def check_file_exists(fname):
Returns
-------
The name of the file to be read.

"""
if os.path.isfile(fname):
return fname
Expand Down
1 change: 1 addition & 0 deletions AmpliGone/io_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ def read_bed(filename):
score=str,
strand=str,
),
keep_default_na=False,
)
primer_df = primer_df[
~(
Expand Down
2 changes: 1 addition & 1 deletion AmpliGone/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.0"
__version__ = "1.3.1"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.3.1](https://github.com/RIVM-bioinformatics/AmpliGone/compare/v1.3.0...v1.3.1) (2024-04-03)


### Bug Fixes

* don't replace NA name values when reading BED file ([6d0c192](https://github.com/RIVM-bioinformatics/AmpliGone/commit/6d0c192a0b997d98778c2a2f0281e19208aedcac))

## [1.3.0](https://github.com/RIVM-bioinformatics/AmpliGone/compare/v1.2.1...v1.3.0) (2023-08-08)


Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ authors:
Environment (RIVM)
orcid: 'https://orcid.org/0009-0002-6384-3446'
- name: "The RIVM-IDS Bioinformatics team"
version: 1.3.0 #x-release-please-version
version: 1.3.1 #x-release-please-version
doi: 10.5281/zenodo.7684307
identifiers:
- type: doi
Expand Down
Loading