Skip to content

Commit

Permalink
docs: removing any references to /scratch directory for Biowulf users
Browse files Browse the repository at this point in the history
  • Loading branch information
skchronicles committed Oct 27, 2022
1 parent e9633fe commit 7622161
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@ cd RNA-seek/
sinteractive --mem=110g --cpus-per-task=12 --gres=lscratch:200
module purge
module load singularity snakemake
./rna-seek run --input .tests/*.R?.fastq.gz --output /scratch/$USER/LOCAL_RNA --genome hg38_30 --mode local
./rna-seek run --input .tests/*.R?.fastq.gz --output /data/$USER/RNA_hg38 --genome hg38_30 --mode local

# @slurm: uses slurm and singularity execution method
# The slurm MODE will submit jobs to the cluster.
# It is recommended running rna-seek in this mode.
module purge
module load singularity snakemake
./rna-seek run --input .tests/*.R?.fastq.gz --output /scratch/$USER/LOCAL_RNA --genome hg38_30 --mode slurm
./rna-seek run --input .tests/*.R?.fastq.gz --output /data/$USER/RNA_hg38 --genome hg38_30 --mode slurm
```

### 4. Contribute
Expand Down
12 changes: 6 additions & 6 deletions docs/RNA-seq/TLDR-RNA-seq.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ module load singularity snakemake
rna-seek build --ref-fa GRCh38.primary_assembly.genome.fa \
--ref-name hg38 \
--ref-gtf gencode.v36.primary_assembly.annotation.gtf \
--gtf-ver 36 --output /scratch/$USER/hg38_36 --dry-run
--gtf-ver 36 --output /data/$USER/hg38_36 --dry-run


# Build Step 5.) Submit the build pipeline to cluster
rna-seek build --ref-fa GRCh38.primary_assembly.genome.fa \
--ref-name hg38 \
--ref-gtf gencode.v36.primary_assembly.annotation.gtf \
--gtf-ver 36 --output /scratch/$USER/hg38_36
--gtf-ver 36 --output /data/$USER/hg38_36
```

An email notification will be sent out when the pipeline starts and ends. Once the build pipeline completes, you can run RNA-seek with the provided test dataset. Please see the intructions below for more information.
Expand Down Expand Up @@ -114,8 +114,8 @@ module load singularity snakemake
# Test data consists of sub sampled FastQ files
rna-seek run \
--input RNA-seek/.tests/*.R?.fastq.gz \
--output /scratch/${USER}/runner_hg38_36/ \
--genome /scratch/${USER}/hg38_36/hg38_36.json \
--output /data/${USER}/runner_hg38_36/ \
--genome /data/${USER}/hg38_36/hg38_36.json \
--mode slurm \
--star-2-pass-basic \
--dry-run
Expand All @@ -132,8 +132,8 @@ Kick off the pipeline by submiting the master job to the cluster. It is essentia
# and with the test dataset
rna-seek run \
--input RNA-seek/.tests/*.R?.fastq.gz \
--output /scratch/${USER}/runner_hg38_36/ \
--genome /scratch/${USER}/hg38_36/hg38_36.json \
--output /data/${USER}/runner_hg38_36/ \
--genome /data/${USER}/hg38_36/hg38_36.json \
--mode slurm \
--star-2-pass-basic \
--dry-run
Expand Down

0 comments on commit 7622161

Please sign in to comment.