Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cookiecutter https://github.com/MetaSUB-CAMP/CAMP_Module_Template
3. Set up the module environment.

```Bash
conda create -f configs/conda/module.yaml
conda env create -f configs/conda/module.yaml
conda activate module
```

Expand Down
8 changes: 4 additions & 4 deletions camp_{{cookiecutter.module_slug}}/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% if cookiecutter.open_source_license == 'MIT license' -%}
{% if cookiecutter.open_source_license == 'MIT' -%}
MIT License

Copyright (c) {% now 'local', '%Y' %}, {{ cookiecutter.full_name }}
Expand All @@ -20,7 +20,7 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
{% elif cookiecutter.open_source_license == 'BSD license' %}
{% elif cookiecutter.open_source_license == 'BSD' -%}

BSD License

Expand Down Expand Up @@ -51,7 +51,7 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
{% elif cookiecutter.open_source_license == 'ISC license' -%}
{% elif cookiecutter.open_source_license == 'ISCL' -%}
ISC License

Copyright (c) {% now 'local', '%Y' %}, {{ cookiecutter.full_name }}
Expand Down Expand Up @@ -79,7 +79,7 @@ limitations under the License.
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

{{ cookiecutter.project_short_description }}
{{ cookiecutter.module_short_description }}
Copyright (C) {% now 'local', '%Y' %} {{ cookiecutter.full_name }}

This program is free software: you can redistribute it and/or modify
Expand Down
4 changes: 2 additions & 2 deletions camp_{{cookiecutter.module_slug}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add longer description of your workflow's algorithmic contents

## Installation

1. Clone repo from [Github](<https://github.com/MetaSUB-CAMP/camp_{{ cookiecutter.module_slug }}).
1. Clone repo from [Github](https://github.com/MetaSUB-CAMP/camp_{{ cookiecutter.module_slug }}).
```Bash
git clone https://github.com/MetaSUB-CAMP/camp_{{ cookiecutter.module_slug }}
```
Expand Down Expand Up @@ -141,7 +141,7 @@ python3 /path/to/camp_{{ cookiecutter.module_slug }}/workflow/{{ cookiecutter.mo

## Credits

- This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter>) as a simplified version of the [project template](https://github.com/audreyr/cookiecutter-pypackage>).
- This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) as a simplified version of the [project template](https://github.com/audreyr/cookiecutter-pypackage).
{% if is_open_source %}
- Free software: {{ cookiecutter.open_source_license }} License
- Documentation: https://camp-documentation.readthedocs.io/en/latest/{{ cookiecutter.module_slug }}.html
Expand Down
4 changes: 2 additions & 2 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"github_username": "lauren-mak",
"module_name": "Binning",
"module_slug": "{{ cookiecutter.module_name.lower().replace(' ', '_') }}",
"module_short_description": "The CAMP binning pipeline replicates the functionality of MetaWRAP (one of the original ensemble `binning methods <https://github.com/bxlab/metaWRAP>`_) with i) better dependency conflict management and ii) improved integration with new binning algorithms.",
"module_short_description": "The CAMP binning pipeline replicates the functionality of MetaWRAP (one of the original ensemble [binning methods](https://github.com/bxlab/metaWRAP)) with i) better dependency conflict management and ii) improved integration with new binning algorithms.",
"version": "0.1.0",
"create_author_file": "y",
"open_source_license": ["MIT", "BSD", "ISCL", "Apache Software License 2.0", "Not open source"]
"open_source_license": ["MIT", "BSD", "ISCL", "Apache Software License 2.0", "GNU General Public License v3", "Not open source"]
}