Skip to content

Commit

Permalink
Merge pull request #96 from Darcy220606/dev
Browse files Browse the repository at this point in the history
patch release to fix minor bugs
  • Loading branch information
Darcy220606 authored Mar 21, 2024
2 parents ac37b6f + 537c7a2 commit 83b4ffc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,6 @@ v<0.2.1>, <14.03.2024>
-- Adjusted readme for installation setup
-- Fixed the `./temp` dir removal step at the end of the process
-- Changed the default matrix in diamond blastp to PAM250
v<0.2.2>, <21.03.2024>
-- Added a check if ./temp dir is found before removal. This caused problems with pipeline setups.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ conda env create -f ./ampcombi/environment.yml

- Using **singularity and docker**:
```
singularity pull ampcombi:0.2.2--pyhdfd78af_0
```

- From git repository:
Expand Down
5 changes: 3 additions & 2 deletions ampcombi/ampcombi.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,9 @@ def parse_tables(args):
sample_summary_df.to_csv(samplelist[i] +'/'+samplelist[i]+'_ampcombi.tsv', sep='\t', index=False)
print(f'The summary file for {samplelist[i]} was saved to {samplelist[i]}.tsv')

# Remove the temp directory
shutil.rmtree('./temp')
# Remove the temp directory if it exists
if os.path.exists('./temp'):
shutil.rmtree('./temp')

#########################################
# FUNCTION : CONCATENATING
Expand Down
2 changes: 1 addition & 1 deletion ampcombi/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.1'
__version__ = '0.2.2'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='AMPcombi',
version='0.2.1',
version='0.2.2',
author='Anan Ibrahim, Louisa Perelo',
author_email='ananhamido@hotmail.com, louperelo@gmail.com',
packages=['ampcombi'],
Expand Down

0 comments on commit 83b4ffc

Please sign in to comment.