annotate Makefile @ 4:5526f8258e8a draft default tip

planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
author ethevenot
date Wed, 28 Feb 2018 09:59:25 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
1 all:
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
2
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
3 test:
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
4 test/test-multi
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
5
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
6 planemo-venv/bin/planemo: planemo-venv
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
7 . planemo-venv/bin/activate && pip install --upgrade pip setuptools
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
8 . planemo-venv/bin/activate && pip install planemo
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
9
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
10 planemo-venv:
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
11 virtualenv planemo-venv
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
12
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
13 planemolint: planemo-venv/bin/planemo
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
14 . planemo-venv/bin/activate && planemo lint
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
15
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
16 planemotest: planemo-venv/bin/planemo
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
17 . planemo-venv/bin/activate && planemo test --conda_dependency_resolution --galaxy_branch release_17.05
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
18
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
19 clean:
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
20 $(RM) -r $(HOME)/.planemo
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
21 $(RM) -r planemo-venv
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
22
5526f8258e8a planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit 0f382a5296aae9bfc77df06b0a5ad493eb3c01f3
ethevenot
parents:
diff changeset
23 .PHONY: all clean test planemolint planemotest