Skip to content

Commit

Permalink
Adjust a couple paths and fix a typo to make the 'pull_fastq_data.sh'…
Browse files Browse the repository at this point in the history
… script functional. Closes #3
  • Loading branch information
Nick-Eagles committed Aug 3, 2021
1 parent cf2a0d0 commit 079dd18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pull_data/pull_fastq_data.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Run this script from the main 'SPEAQeasy-example' folder, specifying an
# output folder to place downloaded files:
#
# bash pull_fastq_data.sh "/some_directory"
# bash pull_data/pull_fastq_data.sh "/some_directory"

if [ "$1" == "" ]; then
echo "Please provide a download location for the FASTQ data when running this script."
echo -e '\ne.g. bash pull_fastq_data.sh "/some_directory"'
echo -e '\ne.g. bash pull_data/pull_fastq_data.sh "/some_directory"'
exit 1
fi

Expand All @@ -20,4 +20,4 @@ for specimen in $spec_ids; do
done

# Create the 'samples.manifest' file for those who want to run SPEAQeasy
Rscript -d "$dest_dir"
Rscript pull_data/make_manifest.R -d "$dest_dir"

0 comments on commit 079dd18

Please sign in to comment.