Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

denoise.sh 313 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  1. #!/bin/sh
  2. set -e
  3. BASE="$(pwd)"
  4. if [ -z "$4" ]; then exit 1; fi
  5. SOURCE="$1"
  6. COUNTS="$2"
  7. SINK="$3"
  8. LOGS="$4"
  9. mkdir -p "$BASE/$SINK"
  10. mkdir -p "$BASE/$LOGS"
  11. set -x
  12. Rscript src/denoise.R "$SOURCE/$COUNTS" "$SINK" >"$BASE/$LOGS/denoise.stdout" 2>"$BASE/$LOGS/denoise.stderr"
  13. cp "$SOURCE"/genes_*.csv "$BASE/$SINK"
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...