Skip to content

Commit 81e4d35

Browse files
fix: bump capsule versions
1 parent 889a54a commit 81e4d35

3 files changed

Lines changed: 11 additions & 10 deletions

File tree

.codeocean/app-panel.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"version": 1,
33
"processes": [
4-
"capsule_mosuite_create_2"
4+
"capsule_mosuite_create_2",
5+
"capsule_mosuite_clean_1"
56
]
67
}

.codeocean/nextflow.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"id": "ab07963e-d9e0-489e-b776-70f6ef2ef73b",
88
"name": "MOSuite-clean",
99
"slug": "5801113",
10-
"version": 1,
10+
"version": 2,
1111
"app_panel": true
1212
},
1313
"resources": {
@@ -29,7 +29,7 @@
2929
"id": "5ce5f88d-980d-4e61-b3a4-ef4a0ce48030",
3030
"name": "MOSuite-create",
3131
"slug": "6541445",
32-
"version": 2,
32+
"version": 3,
3333
"app_panel": true
3434
},
3535
"resources": {

pipeline/main.nf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env nextflow
2-
// hash:sha256:e60c74eb0db9870da170bd3833dbe435cba6b383333fc48223204b0a17b1e6f0
2+
// hash:sha256:4b0bcda131abb27fe9f74befd9dd96e7bdb41c86bd4eef2bba0c0bccf8715402
33

44
// capsule - MOSuite-create
55
process capsule_mosuite_create_2 {
66
tag 'capsule-6541445'
7-
container "$REGISTRY_HOST/published/5ce5f88d-980d-4e61-b3a4-ef4a0ce48030:v2"
7+
container "$REGISTRY_HOST/published/5ce5f88d-980d-4e61-b3a4-ef4a0ce48030:v3"
88

99
cpus 1
1010
memory '7.5 GB'
@@ -28,9 +28,9 @@ process capsule_mosuite_create_2 {
2828
2929
echo "[${task.tag}] cloning git repo..."
3030
if [[ "\$(printf '%s\n' "2.20.0" "\$(git version | awk '{print \$3}')" | sort -V | head -n1)" = "2.20.0" ]]; then
31-
git clone --filter=tree:0 --branch v2.0 "https://\$GIT_ACCESS_TOKEN@\$GIT_HOST/capsule-6541445.git" capsule-repo
31+
git clone --filter=tree:0 --branch v3.0 "https://\$GIT_ACCESS_TOKEN@\$GIT_HOST/capsule-6541445.git" capsule-repo
3232
else
33-
git clone --branch v2.0 "https://\$GIT_ACCESS_TOKEN@\$GIT_HOST/capsule-6541445.git" capsule-repo
33+
git clone --branch v3.0 "https://\$GIT_ACCESS_TOKEN@\$GIT_HOST/capsule-6541445.git" capsule-repo
3434
fi
3535
mv capsule-repo/code capsule/code && ln -s \$PWD/capsule/code /code
3636
rm -rf capsule-repo
@@ -47,7 +47,7 @@ process capsule_mosuite_create_2 {
4747
// capsule - MOSuite-clean
4848
process capsule_mosuite_clean_1 {
4949
tag 'capsule-5801113'
50-
container "$REGISTRY_HOST/published/ab07963e-d9e0-489e-b776-70f6ef2ef73b:v1"
50+
container "$REGISTRY_HOST/published/ab07963e-d9e0-489e-b776-70f6ef2ef73b:v2"
5151

5252
cpus 1
5353
memory '7.5 GB'
@@ -71,9 +71,9 @@ process capsule_mosuite_clean_1 {
7171
7272
echo "[${task.tag}] cloning git repo..."
7373
if [[ "\$(printf '%s\n' "2.20.0" "\$(git version | awk '{print \$3}')" | sort -V | head -n1)" = "2.20.0" ]]; then
74-
git clone --filter=tree:0 --branch v1.0 "https://\$GIT_ACCESS_TOKEN@\$GIT_HOST/capsule-5801113.git" capsule-repo
74+
git clone --filter=tree:0 --branch v2.0 "https://\$GIT_ACCESS_TOKEN@\$GIT_HOST/capsule-5801113.git" capsule-repo
7575
else
76-
git clone --branch v1.0 "https://\$GIT_ACCESS_TOKEN@\$GIT_HOST/capsule-5801113.git" capsule-repo
76+
git clone --branch v2.0 "https://\$GIT_ACCESS_TOKEN@\$GIT_HOST/capsule-5801113.git" capsule-repo
7777
fi
7878
mv capsule-repo/code capsule/code && ln -s \$PWD/capsule/code /code
7979
rm -rf capsule-repo

0 commit comments

Comments
 (0)