Skip to content
Snippets Groups Projects
Commit df75498e authored by Dominik Brilhaus's avatar Dominik Brilhaus
Browse files

add small note

parent b8dccb3e
No related branches found
No related tags found
No related merge requests found
...@@ -48,6 +48,13 @@ ...@@ -48,6 +48,13 @@
- Good for R: RStudio - Good for R: RStudio
- Good for Python: Pycharm - Good for Python: Pycharm
6. specify the interpreter in the first line (for terminal executability), e.g.
- bash: `#! /bin/bash`
- python: `#! /usr/bin/env python3`
- r: `#!/usr/bin/env Rscript`
> once you make the script executable (`chmod +x <script>.sh`), you can execute it directly (i.e. `./<script>.sh` instead of `bash./<script>.sh`)
## Challenge exercise Day 3 ## Challenge exercise Day 3
The pipeline we've shown you in the class was desigend to work (mostly smoothly) with the data, structure and parameters just as we've provided. The pipeline we've shown you in the class was desigend to work (mostly smoothly) with the data, structure and parameters just as we've provided.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment