Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
hisplan committed Nov 10, 2021
1 parent ecf67e9 commit 6340842
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
Binary file modified CellRangerArc.deps.zip
Binary file not shown.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

WDLized Cell Ranger ARC Pipeline

## License

The code is available to everyone under the standard [MIT license](./LICENSE). However, the code internally uses 10x software for certain things, so please make sure that you read and agree to [10x End User Software License](https://www.10xgenomics.com/end-user-software-license-agreement).

## Setup

The pipeline is a part of SCING (Single-Cell pIpeliNe Garden; pronounced as "sing" /siŋ/). For setup, please refer to [this page](https://github.com/hisplan/scing). All the instructions below is given under the assumption that you have already configured SCING in your environment.
Expand Down
8 changes: 7 additions & 1 deletion tests/validate.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/env bash

if [ -z $SCING_HOME ]
then
echo "Environment variable 'SCING_HOME' not defined."
exit 1
fi

#hack: get dependency set up
ln -s ../modules/ modules

Expand All @@ -10,7 +16,7 @@ do

echo "Validating ${module_name}..."

java -jar ~/Applications/womtool.jar \
java -jar ${SCING_HOME}/devtools/womtool.jar \
validate \
test.${module_name}.wdl \
--inputs test.${module_name}.inputs.json
Expand Down
8 changes: 7 additions & 1 deletion validate.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#!/usr/bin/env bash

java -jar ~/Applications/womtool.jar \
if [ -z $SCING_HOME ]
then
echo "Environment variable 'SCING_HOME' not defined."
exit 1
fi

java -jar ${SCING_HOME}/devtools/womtool.jar \
validate \
CellRangerArc.wdl \
--inputs ./configs/template.inputs.json

0 comments on commit 6340842

Please sign in to comment.