Skip to content

Commit 84a197e

Browse files
committed
create release 0.4.0
1 parent b6557a8 commit 84a197e

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

envs/build-docker-imgs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
VERSION=0.3.2
2+
VERSION=0.4.0
33

44
docker build --platform=linux/amd64 -t haniffalab/webatlas-pipeline:${VERSION} -f ./Dockerfile .
55
docker build --platform=linux/amd64 -t haniffalab/webatlas-pipeline-build_config:${VERSION} -f ./Dockerfile.build_config .

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import groovy.json.*
55
nextflow.enable.dsl=2
66

77
verbose_log = true
8-
version = "0.3.2"
8+
version = "0.4.0"
99

1010
//////////////////////////////////////////////////////
1111

multimodal.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ nextflow.enable.dsl=2
99
params.outdir = ""
1010
params.copy_raw = true
1111

12-
version="0.3.2"
12+
version="0.4.0"
1313
verbose_log=true
1414
outdir_with_version = "${params.outdir.replaceFirst(/\/*$/, "")}\/${version}"
1515

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ profiles {
1313
docker {
1414
docker.enabled = true
1515
process {
16-
container = 'haniffalab/webatlas-pipeline:0.3.2'
16+
container = 'haniffalab/webatlas-pipeline:0.4.0'
1717
withLabel: build_config {
18-
container = 'haniffalab/webatlas-pipeline-build_config:0.3.2'
18+
container = 'haniffalab/webatlas-pipeline-build_config:0.4.0'
1919
}
2020
}
2121
}

sphinx/citing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Citation
1111

1212
If you use this software in a scientific publication, please cite using the following Zenodo reference.
1313

14-
**Li, Tong, Horsfall, David, Basurto-Lozada, Daniela, Prete, Martin, Jessica, Cox, & Iolo, Squires. (2023). WebAtlas Pipeline (v0.3.2). Zenodo. https://doi.org/10.5281/zenodo.7863308**
14+
**Li, Tong, Horsfall, David, Basurto-Lozada, Daniela, Prete, Martin, Jessica, Cox, & Iolo, Squires. (2023). WebAtlas Pipeline (v0.4.0). Zenodo. https://doi.org/10.5281/zenodo.7863308**

sphinx/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Haniffa Lab"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "0.3.2"
26+
release = "0.4.0"
2727

2828
# -- General configuration ---------------------------------------------------
2929

sphinx/examples/visium.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ verify the expected directories are created.
9999
.. code-block:: shell
100100
:caption: Input
101101
102-
ls -l output/CytAssist_FFPE_Human_Breast_Cancer/0.3.2
102+
ls -l output/CytAssist_FFPE_Human_Breast_Cancer/0.4.0
103103
104104
.. code-block:: shell
105105
:caption: Output
@@ -121,7 +121,7 @@ at http://localhost:3000, and that CORS is enabled via the Access-Control-Allow-
121121
.. code-block:: shell
122122
:caption: Input
123123
124-
npx http-server output/CytAssist_FFPE_Human_Breast_Cancer/0.3.2 --port 3000 --cors
124+
npx http-server output/CytAssist_FFPE_Human_Breast_Cancer/0.4.0 --port 3000 --cors
125125
126126
.. code-block:: shell
127127
:caption: Output

sphinx/examples/xenium.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ verify the expected directories are created.
102102
.. code-block:: shell
103103
:caption: Input
104104
105-
ls -l output/Xenium_FFPE_Human_Breast_Cancer_Rep1_outs/0.3.2
105+
ls -l output/Xenium_FFPE_Human_Breast_Cancer_Rep1_outs/0.4.0
106106
107107
.. code-block:: shell
108108
:caption: Output
@@ -123,7 +123,7 @@ at http://localhost:3000, and that CORS is enabled via the Access-Control-Allow-
123123
.. code-block:: shell
124124
:caption: Input
125125
126-
npx http-server output/Xenium_FFPE_Human_Breast_Cancer_Rep1_outs/0.3.2 --port 3000 --cors
126+
npx http-server output/Xenium_FFPE_Human_Breast_Cancer_Rep1_outs/0.4.0 --port 3000 --cors
127127
128128
.. code-block:: shell
129129
:caption: Output

sphinx/installation.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,43 +14,43 @@ Download the WebAtlas Pipeline release. You can look for previous `releases on G
1414
.. code-block:: shell
1515
:caption: Input
1616
17-
wget https://github.com/haniffalab/webatlas-pipeline/archive/refs/tags/v0.3.2.tar.gz
17+
wget https://github.com/haniffalab/webatlas-pipeline/archive/refs/tags/v0.4.0.tar.gz
1818
1919
.. code-block:: shell
2020
:caption: Expected Output
2121
2222
Resolving github.com (github.com)... 140.82.121.3
2323
Connecting to github.com (github.com)|140.82.121.3|:443... connected.
2424
HTTP request sent, awaiting response... 302 Found
25-
Location: https://codeload.github.com/haniffalab/webatlas-pipeline/tar.gz/refs/tags/v0.3.2 [following]
26-
--2023-05-18 09:30:15-- https://codeload.github.com/haniffalab/webatlas-pipeline/tar.gz/refs/tags/v0.3.2
25+
Location: https://codeload.github.com/haniffalab/webatlas-pipeline/tar.gz/refs/tags/v0.4.0 [following]
26+
--2023-05-18 09:30:15-- https://codeload.github.com/haniffalab/webatlas-pipeline/tar.gz/refs/tags/v0.4.0
2727
Resolving codeload.github.com (codeload.github.com)... 140.82.121.9
2828
Connecting to codeload.github.com (codeload.github.com)|140.82.121.9|:443... connected.
2929
HTTP request sent, awaiting response... 200 OK
3030
Length: unspecified [application/x-gzip]
31-
Saving to: ‘v0.3.2.tar.gz’
31+
Saving to: ‘v0.4.0.tar.gz’
3232
33-
v0.3.2.tar.gz [ <=> ] 2.70M 9.12MB/s in 0.3s
33+
v0.4.0.tar.gz [ <=> ] 2.70M 9.12MB/s in 0.3s
3434
35-
2023-05-18 09:30:16 (9.12 MB/s) - ‘v0.3.2.tar.gz’ saved [2835534]
35+
2023-05-18 09:30:16 (9.12 MB/s) - ‘v0.4.0.tar.gz’ saved [2835534]
3636
3737
Extract the WebAtlas compressed tag and change directory into the new repo.
3838

3939
.. code-block:: shell
4040
:caption: Input
4141
42-
tar -xzvf ./v0.3.2.tar.gz
43-
cd webatlas-pipeline-0.3.2
42+
tar -xzvf ./v0.4.0.tar.gz
43+
cd webatlas-pipeline-0.4.0
4444
4545
.. code-block:: shell
4646
:caption: Expected Output
4747
48-
webatlas-pipeline-0.3.2/
49-
webatlas-pipeline-0.3.2/.github/
48+
webatlas-pipeline-0.4.0/
49+
webatlas-pipeline-0.4.0/.github/
5050
...
5151
...
52-
webatlas-pipeline-0.3.2/tests/input/simple_config.json
53-
webatlas-pipeline-0.3.2/tests/test_class.py
52+
webatlas-pipeline-0.4.0/tests/input/simple_config.json
53+
webatlas-pipeline-0.4.0/tests/test_class.py
5454
5555
.. _environment:
5656

0 commit comments

Comments
 (0)