Skip to content

Commit

Permalink
Upgrades to version 4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
abmiguez committed Jan 17, 2023
1 parent fe40ea5 commit 2e7773a
Show file tree
Hide file tree
Showing 16 changed files with 38 additions and 29 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## Version 4.0.4 (Jan 17nd, 2023)
### Changed features
* [MetaPhlAn] Download of the pre-computed Bowtie2 database is now the default option during installation
* [StrainPhlAn] Improved StrainPhlAn's sample2makers.py script performance and speed
### Fixes
* [StrainPhlAn] Fixes error when using --abs_n_samples_threshold in the PhyloPhlAn call

<br/>

## Version 4.0.3 (Oct 24nd, 2022)
### Changed features
* [MetaPhlAn] Removal of the NCBI taxID from the merged profiles produced by the `merge_metaphlan_profiles.py` script
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/metaphlan.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
'Nicola Segata ([email protected]), '
'Duy Tin Truong, '
'Francesco Asnicar ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'

import sys
try:
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/strainphlan.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
'Francesco Asnicar ([email protected]), '
'Moreno Zolfo ([email protected]), '
'Francesco Beghini ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'


import argparse as ap
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/add_metadata_tree.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python
__author__ = ('Duy Tin Truong ([email protected]), '
'Aitor Blanco Miguez ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'

import argparse as ap
import pandas
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/consensus_markers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = 'Aitor Blanco Miguez ([email protected])'
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'


import os
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/database_controller.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = 'Aitor Blanco Miguez ([email protected])'
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'


import os
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/external_exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
'Francesco Asnicar ([email protected]), '
'Moreno Zolfo ([email protected]), '
'Francesco Beghini ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'


import os
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/extract_markers.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python
__author__ = ('Aitor Blanco Miguez ([email protected]), '
'Francesco Beghini ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'


import os
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/parallelisation.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
'Francesco Asnicar ([email protected]), '
'Moreno Zolfo ([email protected]), '
'Francesco Beghini ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'


from typing import Iterable, Callable, Any
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/phylophlan_controller.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = 'Aitor Blanco Miguez ([email protected]'
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'


import os
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/plot_tree_graphlan.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python
__author__ = ('Duy Tin Truong ([email protected]), '
'Aitor Blanco Miguez ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'

import argparse as ap
import dendropy
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/sample2markers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
'Francesco Asnicar ([email protected]), '
'Moreno Zolfo ([email protected]), '
'Francesco Beghini ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'



Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/sgb_to_gtdb_profile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
__author__ = 'Aitor Blanco ([email protected]'
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'

import os
import time
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/strain_transmission.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python
__author__ = ('Aitor Blanco ([email protected]), '
'Mireia Valles-Colomer ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'


import os
Expand Down
4 changes: 2 additions & 2 deletions metaphlan/utils/util_fun.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
'Francesco Asnicar ([email protected]), '
'Moreno Zolfo ([email protected]), '
'Francesco Beghini ([email protected])')
__version__ = '4.0.3'
__date__ = '24 Oct 2022'
__version__ = '4.0.4'
__date__ = '17 Jan 2023'


import os
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setuptools.setup(
name='MetaPhlAn',
version='4.0.3',
version='4.0.4',
author='Aitor Blanco-Miguez',
author_email='[email protected]',
url='http://github.com/biobakery/MetaPhlAn/',
Expand Down

0 comments on commit 2e7773a

Please sign in to comment.