Skip to content

Commit

Permalink
rm more cluster_specific
Browse files Browse the repository at this point in the history
  • Loading branch information
daler committed Apr 9, 2023
1 parent 4cac58a commit 90d219d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 15 deletions.
3 changes: 0 additions & 3 deletions workflows/colocalization/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import pandas as pd
from lib import helpers, aligners
from lib import utils
from lib import common
from lib import cluster_specific
from lib.patterns_targets import RNASeqConfig, ChIPSeqConfig
import os
from snakemake.utils import makedirs
Expand All @@ -17,8 +16,6 @@ import yaml
import numpy as np

configfile: 'config/config.yaml'
shell.prefix('set -euo pipefail; export TMPDIR={};'.format(cluster_specific.tempdir_for_biowulf()))
shell.executable('/bin/bash')

chipseq_config = ChIPSeqConfig('config/config.yaml', 'config/chipseq_patterns.yaml', workdir='../chipseq')

Expand Down
4 changes: 0 additions & 4 deletions workflows/external/Snakefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
import sys
sys.path.insert(0, srcdir('../..'))
from lib import cluster_specific
from lib import common
import pybedtools


shell.prefix('set -euo pipefail; export TMPDIR={};'.format(cluster_specific.tempdir_for_biowulf()))
shell.executable('/bin/bash')

# This is a useful construct for mapping intended output filenames to the URLs
# they come from
modencode = {
Expand Down
4 changes: 0 additions & 4 deletions workflows/figures/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,8 @@ sys.path.insert(0, srcdir('../..'))
import os
from lib import utils
from lib import common
from lib import cluster_specific
from lib.patterns_targets import RNASeqConfig, ChIPSeqConfig

shell.prefix('set -euo pipefail; export TMPDIR={};'.format(cluster_specific.tempdir_for_biowulf()))
shell.executable('/bin/bash')

rnaseq_config = RNASeqConfig('config/config.yaml', 'config/rnaseq_patterns.yaml', workdir='../rnaseq')
chipseq_config = ChIPSeqConfig('config/config.yaml', 'config/chipseq_patterns.yaml', workdir='../chipseq')

Expand Down
4 changes: 0 additions & 4 deletions workflows/references/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ from lib import common

config = common.load_config(config)

tempfile.tempdir = cluster_specific.tempdir_for_biowulf()

shell.prefix('set -euo pipefail; export TMPDIR={};'.format(cluster_specific.tempdir_for_biowulf()))
shell.executable('/bin/bash')
references_dir = common.get_references_dir(config)
refdict, conversion_kwargs = common.references_dict(config)

Expand Down

0 comments on commit 90d219d

Please sign in to comment.