Skip to content

Commit

Permalink
Add source-related files for spatula commit 7fe7171
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Eagles committed Oct 11, 2024
1 parent 4d65fef commit f6954ec
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions spatula/7fe7171/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
spatula
57 changes: 57 additions & 0 deletions spatula/7fe7171/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Installation

```bash
## Commands used for installing the software

## clone the repository (at a time where the latest commit was 7f37171)
git clone --recursive https://github.com/seqscope/spatula.git
cd spatula

## build the submodules
cd submodules
sh -x build.sh
cd ..

## build spatula
mkdir build
cd build
cmake ..
make
cd ../..

## Ignore all downloaded/installed files
echo "spatula" > .gitignore

chmod 775 -R .

## Version control files
git add .gitignore
git add README.md
```

# Reproducibility

```bash
## Evaluate the following commands
module list
date
echo "User: ${USER}"
echo "Node name: ${HOSTNAME}"
```

```bash
## copy paste the output from the previous commands
$ module list

Currently Loaded Modules:
1) JHPCE_ROCKY9_DEFAULT_ENV 2) JHPCE_tools/3.0



$ date
Fri Oct 11 02:33:37 PM EDT 2024
$ echo "User: ${USER}"
User: neagles
$ echo "Node name: ${HOSTNAME}"
Node name: compute-156.cm.cluster
```

0 comments on commit f6954ec

Please sign in to comment.