Skip to content

Commit 90cdf46

Browse files
committed
add scripts-download CENPK ChIPseq data
This commit includes the PBS scripts for downloading the CENPK ChIPseq data from Cai et al 2013 and updates the `.gitignore` file to include the FASTQ and log files.
1 parent abfcb91 commit 90cdf46

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

paper/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ SyntheticStrain/results/hg19*
3535
ENCODE_CellLines/results/BAM
3636
ENCODE_CellLines/results/BAM-nospike
3737
ENCODE_CellLines/results/ID
38+
CENPK-chipseq/logs/*.out-*
39+
CENPK-chipseq/logs/*.err-*
40+
CENPK-chipseq/results/FASTQ
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
#PBS -l nodes=1:ppn=8
3+
#PBS -l pmem=32gb
4+
#PBS -l walltime=06:00:00
5+
#PBS -A open
6+
#PBS -o logs/download.data.log.out
7+
#PBS -e logs/download.data.log.err
8+
9+
# FIRST CHANGE PATH TO EXECUTE
10+
WRK=/path/to/GenoPipe/paper/CENPK-chipseq
11+
cd $WRK
12+
13+
module load anaconda3
14+
source activate ~/work/myconda/genopipe/
15+
16+
[ -d logs ] || mkdir logs
17+
[ -d results/FASTQ ] || mkdir -p results/FASTQ
18+
19+
parallel-fastq-dump --gzip --split-files -t 8 -O results/FASTQ -s SRR518875
20+
parallel-fastq-dump --gzip --split-files -t 8 -O results/FASTQ -s SRR518876
21+
parallel-fastq-dump --gzip --split-files -t 8 -O results/FASTQ -s SRR518877
22+
parallel-fastq-dump --gzip --split-files -t 8 -O results/FASTQ -s SRR518878

0 commit comments

Comments
 (0)