diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-11-22 12:53:53 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-11-22 12:53:53 +0000 |
commit | bd1e95c45668aedb39e70d1aae90a9bb86534506 (patch) | |
tree | 04bbe2cf3b97d2c7b2fac582eb3380b2ec0f2c30 | |
parent | 311572e0c1375429de998d70eb7d587d7b8032c4 (diff) |
Using .local instead of ./.local in READMEs
Until now, in the instructions, we were suggesting to run
`./.local/bin/make', but the `./' part is extra: this is already a
directory and so the shell will be able to find it. So to make things more
clear and easy to read/write, we removed the `./' part from the calls to
our custom Make installation.
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | README.md | 12 | ||||
-rwxr-xr-x | configure | 2 |
3 files changed, 9 insertions, 9 deletions
@@ -12,7 +12,7 @@ Unix-based environment). ```shell $ git clone https://gitlab.com/makhlaghi/muse-ultra-diffuse-emitters.git $ ./configure -$ ./.local/bin/make -j8 +$ .local/bin/make -j8 ``` For a general introduction to reproducible science as implemented in this @@ -66,5 +66,5 @@ This pipeline was designed to have as few dependencies as possible. `./.local/bin/nproc`) ```shell - $ ./.local/bin/make -j8 + $ .local/bin/make -j8 ``` @@ -3,7 +3,7 @@ Introduction This description is for *creators* of the reproduction pipeline. See `README` for instructions on running it (in short, just download/clone it, -then run `./configure` and `./.local/bin/make -j8`). +then run `./configure` and `.local/bin/make -j8`). This project contains a **fully working template** for a high-level research reproduction pipeline, or reproducible paper, as defined in the @@ -246,7 +246,7 @@ understand its architecture so you can navigate your way in the directories and understand how to implement your research project within its framework. But before reading this theoretical discussion, please run the pipeline (described in `README`: first run `./configure`, then -`./.local/bin/make -j8`) without any change, just to see how it works. +`.local/bin/make -j8`) without any change, just to see how it works. In order to obtain a reproducible result it is important to have an identical environment (for example same versions the programs that it will @@ -468,10 +468,10 @@ advanced in later stages of your work. ```shell $ ./configure # Set top directories and build dependencies. - $ ./.local/bin/make # Run the pipeline. + $ .local/bin/make # Run the pipeline. # Open 'paper.pdf' and see if everything is ok. - $ ./.local/bin/make clean # Delete high-level outputs. + $ .local/bin/make clean # Delete high-level outputs. ``` - **Copyright**, **name** and **date**: Go over the existing scripting @@ -590,8 +590,8 @@ advanced in later stages of your work. commit to be sure it works as expected). ```shell - $ ./.local/bin/make clean # Delete outputs ('make distclean' for everything) - $ ./.local/bin/make # Build the pipeline to ensure everything is fine. + $ .local/bin/make clean # Delete outputs ('make distclean' for everything) + $ .local/bin/make # Build the pipeline to ensure everything is fine. $ git add -u # Stage all the changes. $ git add README-pipeline.md # Keep this pipeline description. $ git status # Make sure everything is fine. @@ -570,7 +570,7 @@ The reproduction pipeline and its environment are configured with no errors. Please run the following command to start. (Replace '8' with the number of CPU threads) - ./.local/bin/make -j8 + .local/bin/make -j8 To change the configuration later, please re-run './configure', DO NOT manually edit the relevant files. |