Skip to content

Commit 715005c

Browse files
author
Ludovic Claude
committed
Reorganise project
1 parent 6d3227b commit 715005c

35 files changed

+5
-5
lines changed

Guidelines.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Step-by-Step Guidelines
3636
2. **Clone** the *functions-repository* folder -
3737
<https://github.com/LREN-CHUV/functions-repository>
3838

39-
3. In your clone, **go to** *mip\_node*
39+
3. **Go to** the root folder of your cloned project
4040

4141
4. **Make a copy** of *r-summary-stats* directory and rename it into
4242
the name of your algorithm (r-…)
@@ -54,7 +54,7 @@ Step-by-Step Guidelines
5454

5555
ii. If your package is available on GitHub, use:
5656

57-
RUN installGithub.r &lt;github coordinates&gt; where the Github
57+
RUN installGithub.r <github coordinates> where the Github
5858
coordinates look like username/projectname, and optionally add a @
5959
sign followed by the Git version to use, for example
6060
LREN-CHUV/hbpsummarystats@6f6a42e

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ get_script_dir () {
1414

1515
ROOT_DIR="$(get_script_dir)"
1616

17-
IMAGES="mip_node/r-summary-stats mip_node/r-linear-regression mip_federation/r-summary-stats mip_federation/r-linear-regression"
17+
IMAGES="r-summary-stats r-linear-regression"
1818

1919
for image in $IMAGES ; do
2020
cd $ROOT_DIR/$image

cleanup.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fi
1313
if [[ "$tag" == "" ]]; then
1414
echo "Usage: ./cleanup.sh <tag>"
1515
echo "where tag can be one of:"
16-
$DOCKER images | grep "registry.federation.mip.hbp/mip_(node|federation)" | awk '{print $2}' | sort | uniq
16+
$DOCKER images | grep "hbpmip/" | awk '{print $2}' | sort | uniq
1717
exit 1
1818
fi
1919

@@ -22,7 +22,7 @@ $DOCKER ps -q -f status=exited | xargs --no-run-if-empty $DOCKER rm
2222

2323
# Remove tagged images
2424
for t in $tag; do
25-
$DOCKER images | grep "registry.federation.mip.hbp/" | grep $t | cut -d' ' -f1 | sed -e "s/$/:$t/" | xargs --no-run-if-empty docker rmi
25+
$DOCKER images | grep "hbpmip/" | grep $t | cut -d' ' -f1 | sed -e "s/$/:$t/" | xargs --no-run-if-empty docker rmi
2626
done
2727

2828
# Remove anomymous images
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)