Skip to content

Commit

Permalink
more flake fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Aug 3, 2023
1 parent f3ba376 commit 173bcc0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion snakePipes/workflows/ATAC-seq/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ onstart:
usedEnvs = [CONDA_SHARED_ENV, CONDA_ATAC_ENV, CONDA_RMD_ENV]
cf.writeTools(usedEnvs, workingdir, "ATAC-seq", maindir)
if sampleSheet:
cf.copySampleSheet(sampleSheet,wdir)
cf.copySampleSheet(sampleSheet, wdir)

### main rule ##################################################################
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/ChIP-seq/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ onstart:
usedEnvs = [CONDA_SHARED_ENV, CONDA_CHIPSEQ_ENV]
cf.writeTools(usedEnvs, workingdir, "ChIP-seq", maindir)
if sampleSheet:
cf.copySampleSheet(sampleSheet,wdir)
cf.copySampleSheet(sampleSheet, wdir)


### main rule ##################################################################
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/HiC/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ onstart:
usedEnvs = [CONDA_SHARED_ENV, CONDA_HIC_ENV]
cf.writeTools(usedEnvs, outdir, "HiC", maindir)
if sampleSheet:
cf.copySampleSheet(sampleSheet,wdir)
cf.copySampleSheet(sampleSheet, wdir)

### main rule ##################################################################
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/WGBS/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ onstart:
usedEnvs = [CONDA_SHARED_ENV, CONDA_WGBS_ENV]
cf.writeTools(usedEnvs, outdir, pipeline, maindir)
if sampleSheet:
cf.copySampleSheet(sampleSheet,wdir)
cf.copySampleSheet(sampleSheet, wdir)

### main rule ##################################################################
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/mRNA-seq/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ onstart:
usedEnvs = [CONDA_SHARED_ENV, CONDA_RNASEQ_ENV]
cf.writeTools(usedEnvs, outdir, "mRNA-seq", maindir)
if sampleSheet:
cf.copySampleSheet(sampleSheet,wdir)
cf.copySampleSheet(sampleSheet, wdir)

### main rule ##################################################################
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/noncoding-RNA-seq/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ onstart:
usedEnvs = [CONDA_SHARED_ENV, CONDA_NONCODING_RNASEQ_ENV]
cf.writeTools(usedEnvs, outdir, "noncoding-RNA-seq", maindir)
if sampleSheet:
cf.copySampleSheet(sampleSheet,wdir)
cf.copySampleSheet(sampleSheet, wdir)

### main rule ##################################################################
################################################################################
Expand Down

0 comments on commit 173bcc0

Please sign in to comment.