File tree Expand file tree Collapse file tree 12 files changed +15
-72
lines changed
arteria-checksum-ws/tasks Expand file tree Collapse file tree 12 files changed +15
-72
lines changed Original file line number Diff line number Diff line change @@ -39,9 +39,7 @@ static_ngi_log_path: "{{ static_ngi_pipeline_path }}/log"
39
39
ngi_softlinks : " {{ ngi_pipeline_workdir }}/softlinks"
40
40
41
41
NGI_venv_name : " NGI"
42
- NGI_venv_py2_name : " NGI_py2"
43
- ngi_pipeline_venv : " {{ sw_path }}/anaconda/envs/{{ NGI_venv_name }}"
44
- ngi_pipeline_venv_py2 : " {{ sw_path }}/anaconda/envs/{{ NGI_venv_py2_name }}"
42
+ ngi_pipeline_venv : " {{ anaconda_path }}/envs/{{ NGI_venv_name }}"
45
43
46
44
ngi_pipeline_conf : " {{ root_path }}/conf/"
47
45
ngi_resources : " {{ root_path }}/resources/"
Original file line number Diff line number Diff line change 95
95
- { role: arteria-sequencing-report-ws, tags: arteria-sequencing-report }
96
96
- { role: snpseq-metadata-service, tags: snpseq-metadata-service }
97
97
- { role: standalone_scripts, tags: standalone_scripts }
98
- - { role: delivery, tags: delivery }
99
98
- { role: misc-tools, tags: misc-tools }
100
99
- { role: archive-upload-ws, tags: archive-upload }
101
100
- { role: archive-verify-ws, tags: archive-verify }
Original file line number Diff line number Diff line change 1
- anaconda_file : Anaconda3-2021.05-Linux-x86_64.sh
2
- anaconda_checksum : 2751ab3d678ff0277ae80f9e8a74f218cfc70fe9a9cdc7bb1c137d7e47e33d53
3
- anaconda_url : " http://repo.anaconda.com/archive/{{ anaconda_file }}"
4
- anaconda_src : " /scratch/{{ anaconda_file }}"
1
+ anaconda_version : " 24.7.1-0"
2
+ anaconda_file : " Miniforge-pypy3-{{ anaconda_version }}-Linux-x86_64.sh"
3
+ anaconda_checksum : 538afb0f656fffcc4b4015b676fbf3905052d3817dd091e3b1043bd7f68f0de6
4
+ anaconda_url : " https://github.com/conda-forge/miniforge/releases/download/{{ anaconda_version }}/{{ anaconda_file }}"
5
+ anaconda_src : " /scratch/{{ anaconda_file }}"
Original file line number Diff line number Diff line change 11
11
creates : " {{ anaconda_path }}/LICENSE.txt"
12
12
13
13
- name : Update anaconda
14
- shell : " {{ anaconda_path }}/bin/conda update -n base -c defaults conda -y"
14
+ shell : " {{ anaconda_path }}/bin/conda update -n base -c conda-forge conda -y"
15
15
16
16
- name : " Check if {{ conda_tools_env }} virtual env exists"
17
17
shell : " {{ anaconda_path }}/bin/conda env list"
Original file line number Diff line number Diff line change 5
5
args :
6
6
creates : " {{ arteria_service_env_root }}"
7
7
8
+ - name : make sure pip is up to date
9
+ shell : " {{ arteria_service_env_root }}/bin/python -m ensurepip --upgrade"
10
+
8
11
- name : get archive-upload from git
9
12
git :
10
13
repo : " {{ archive_upload_repo }}"
Original file line number Diff line number Diff line change 2
2
3
3
- name : create virtual python env for arteria-checksum
4
4
shell : " conda create --name {{ arteria_service_name }} python=2.7"
5
- args :
5
+ args :
6
6
creates : " {{ arteria_service_env_root }}"
7
7
8
+ - name : make sure pip is up to date
9
+ shell : " {{ arteria_service_env_root }}/bin/python -m ensurepip --upgrade"
10
+
8
11
- name : get arteria-checksum from git
9
12
git :
10
13
repo : " {{ arteria_checksum_repo }}"
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
register : " nfcore_envs"
5
5
6
6
- name : Setup {{ nf_core_env_name }} virtual env with python3 and nf-core v{{ nf_core_version }}
7
- command : " conda create -n {{ nf_core_env_name }} -c conda-forge -c bioconda -c anaconda python={{ python3_version }} nf-core={{ nf_core_version }} nextflow={{ nextflow_version_tag }} awscli={{ awscli_version }}"
7
+ command : " conda create -n {{ nf_core_env_name }} -c conda-forge -c bioconda python={{ python3_version }} nf-core={{ nf_core_version }} nextflow={{ nextflow_version_tag }} awscli={{ awscli_version }}"
8
8
when : not nf_core_env_name in nfcore_envs.stdout|split
9
9
10
10
# Setup pipelines
Original file line number Diff line number Diff line change 8
8
shell : " conda create -n {{ NGI_venv_name }} pip python={{ python3_version }}"
9
9
when : not NGI_venv_name in py_venv_exists.stdout|split
10
10
11
- - name : Setup virtual env with python{{ python2_version }} and install dependencies
12
- shell : " conda create -n {{ NGI_venv_py2_name }} -c anaconda python={{ python2_version }}"
13
- when : not NGI_venv_py2_name in py_venv_exists.stdout|split
14
-
15
11
- name : Fetch ngi_pipeline from github
16
12
git :
17
13
repo : " {{ ngi_pipeline_repo }}"
You can’t perform that action at this time.
0 commit comments