From: Peter Amstutz Date: Fri, 15 Jan 2021 20:31:23 +0000 (-0500) Subject: Starting the lesson. X-Git-Url: https://git.arvados.org/rnaseq-cwl-training.git/commitdiff_plain/1ead988de359a7ffb155615473fd03f5ab9c735d Starting the lesson. --- diff --git a/README b/README.md similarity index 64% rename from README rename to README.md index 5a995d4..fd9a630 100644 --- a/README +++ b/README.md @@ -1,3 +1,21 @@ + +# Downloading reference data + +``` +mkdir rnaseq +cd rnaseq +wget --mirror --no-parent --no-host --cut-dirs=1 https://download.pirca.arvadosapi.com/c=pirca-4zz18-sa9s62lzc00jeds/ +``` + +# Building the Docker image + +``` +cd dockerfile +docker build -t cwl-training-rnaseq-tools . +``` + +# Acknowledgements + These CWL lessons are based on "Introduction to RNA-seq using high-performance computing (HPC)" lessons developed by members of the teaching team at the Harvard Chan Bioinformatics Core (HBC) and diff --git a/lesson1/lesson1.md b/lesson1/lesson1.md new file mode 100644 index 0000000..7d4e1b1 --- /dev/null +++ b/lesson1/lesson1.md @@ -0,0 +1,3 @@ +# Turning a bash script into a workflow + +In this lesson we will turn `rnaseq_analysis_on_input_file.sh` into a workflow. diff --git a/scripts/rnaseq_analysis_on_input_file.sh b/lesson1/rnaseq_analysis_on_input_file.sh similarity index 100% rename from scripts/rnaseq_analysis_on_input_file.sh rename to lesson1/rnaseq_analysis_on_input_file.sh