-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #169 from databio/dev
Dev
- Loading branch information
Showing
18 changed files
with
740 additions
and
125 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
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,68 @@ | ||
description: "Schema for a minimal PEP" | ||
version: "2.0.0" | ||
properties: | ||
name: | ||
type: string | ||
pattern: "^\\S*$" | ||
description: "Project name with no whitespace" | ||
config: | ||
pep_version: | ||
description: "Version of the PEP Schema this PEP follows" | ||
type: string | ||
sample_table: | ||
type: string | ||
description: "Path to the sample annotation table with one row per sample" | ||
subsample_table: | ||
type: string | ||
description: "Path to the subsample annotation table with one row per subsample and sample_name attribute matching an entry in the sample table" | ||
sample_modifiers: | ||
type: object | ||
properties: | ||
append: | ||
type: object | ||
duplicate: | ||
type: object | ||
imply: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
if: | ||
type: object | ||
then: | ||
type: object | ||
derive: | ||
type: object | ||
properties: | ||
attributes: | ||
type: array | ||
items: | ||
type: string | ||
sources: | ||
type: object | ||
project_modifiers: | ||
type: object | ||
properties: | ||
amend: | ||
description: "Object overwriting original project attributes" | ||
type: object | ||
import: | ||
description: "List of external PEP project config files to import" | ||
type: array | ||
items: | ||
type: string | ||
required: | ||
- pep_version | ||
samples: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
sample_name: | ||
type: string | ||
pattern: "^\\S*$" | ||
description: "Unique name of the sample with no whitespace" | ||
required: | ||
- sample_name | ||
required: | ||
- samples |
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
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
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
187 changes: 187 additions & 0 deletions
187
docs/files/examples/gold/results_pipeline/gold1/fastqc/gold1_R1_trim_fastqc.html
Large diffs are not rendered by default.
Oops, something went wrong.
187 changes: 187 additions & 0 deletions
187
docs/files/examples/gold/results_pipeline/gold3/fastqc/gold3_R1_trim_fastqc.html
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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 @@ | ||
#!/bin/bash | ||
|
||
case "$OSTYPE" in | ||
solaris*) echo "SOLARIS; See https://github.com/guertinlab/seqOutBias for installation." ;; | ||
darwin*) wget -O seqOutBias_v1.2.0.tgz https://github.com/guertinlab/seqOutBias/releases/download/v1.2.0/seqOutBias_v1.2.0.bin.osx.x86_64.tgz ;; | ||
linux*) wget -O seqOutBias_v1.2.0.tgz https://github.com/guertinlab/seqOutBias/releases/download/v1.2.0/seqOutBias_v1.2.0.bin.linux.x86_64.tgz ;; | ||
bsd*) echo "BSD; See https://github.com/guertinlab/seqOutBias for installation." ;; | ||
msys*) echo "WINDOWS; See https://github.com/guertinlab/seqOutBias for installation." ;; | ||
*) echo "unknown: $OSTYPE; See https://github.com/guertinlab/seqOutBias for installation." ;; | ||
esac | ||
|
||
if [ -f "seqOutBias_v1.2.0.tgz" ]; then | ||
ENVS=$(conda env list | awk '{print $1}' ) | ||
if [[ $ENVS = *"pepatac"* ]]; then | ||
conda activate pepatac | ||
mkdir seqOutBias_v1.2.0 && tar xvf seqOutBias_v1.2.0.tgz -C seqOutBias_v1.2.0 --strip-components 1 | ||
cd seqOutBias_v1.2.0/ | ||
ln -s `pwd`/seqOutBias $CONDA_PREFIX/bin/seqOutBias | ||
cd ../ | ||
else | ||
echo "Error: Please run `conda env create -f requirements-conda.yml` first." | ||
exit | ||
fi; | ||
fi; |
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
Oops, something went wrong.