-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
54564bd
commit 583030f
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# 2022 Benjamin J Perry | ||
# MIT License | ||
# Copyright (c) 2022 Benjamin J Perry | ||
# Version: 1.0 | ||
# Maintainer: Benjamin J Perry | ||
# Email: [email protected] | ||
|
||
configfile: "config/config.yaml" | ||
|
||
import os | ||
|
||
onstart: | ||
print(f"Working directory: {os.getcwd()}") | ||
print("TOOLS: ") | ||
os.system('echo " bash: $(which bash)"') | ||
os.system('echo " PYTHON: $(which python)"') | ||
os.system('echo " CONDA: $(which conda)"') | ||
os.system('echo " SNAKEMAKE: $(which snakemake)"') | ||
os.system('echo " PYTHON VERSION: $(python --version)"') | ||
os.system('echo " CONDA VERSION: $(conda --version)"') | ||
print(f"Env TMPDIR={os.environ.get('TMPDIR', '<n/a>')}") | ||
|
||
# Define samples from data directory using wildcards | ||
SAMPLES, = glob_wildcards('fastq/{samples}.fastq.gz') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# TMPDIR | ||
TMPDIR: /dataset/{Data Direcotry}/itmp #TODO: Update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Location for fastq files |