-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge develop for v0.2.0 and update changelog
- Loading branch information
Showing
22 changed files
with
404 additions
and
72 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,42 @@ | ||
# add project folder to PATH | ||
projectDir=$(dirname $(realpath $_)) | ||
export PATH=${projectDir}:$PATH | ||
|
||
NXF_OPTIONS=$(nextflow help run | egrep -o '\-\w+\.?' | sort -u) | ||
PIPE_OPTIONS=$(egrep log chipseq-pipeline.nf | egrep -o '\-{2}[^ ]+ ') | ||
|
||
_ci() { | ||
local cur prev | ||
|
||
cur=${COMP_WORDS[COMP_CWORD]} | ||
prev=${COMP_WORDS[COMP_CWORD-1]} | ||
|
||
case ${COMP_CWORD} in | ||
1) | ||
COMPREPLY=($(compgen -W "run validate cleanup" ${cur})) | ||
;; | ||
[2-9]|[1-9][0-9]) | ||
case ${COMP_WORDS[1]} in | ||
run) | ||
case "${cur}" in | ||
-*) | ||
COMPREPLY=($(compgen -o default -W "$NXF_OPTIONS $PIPE_OPTIONS" -- ${cur})) | ||
;; | ||
*) | ||
COMPREPLY=($(compgen -o default)) | ||
;; | ||
esac | ||
;; | ||
validate) | ||
COMPREPLY=($(compgen -f ${cur})) | ||
;; | ||
esac | ||
;; | ||
*) | ||
COMPREPLY=() | ||
;; | ||
esac | ||
} | ||
|
||
# add command autocompletion | ||
complete -o nospace -F _ci ci |
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 |
---|---|---|
@@ -1,5 +1,14 @@ | ||
# ChIP-nf Changelog | ||
|
||
## Version 0.2.0 | ||
|
||
- Update groupTuple for merging and fix input sorting for Zerone - resolves #3 | ||
- Add paramter to set MACS2 temp dir and set default to process folder | ||
- Use global fragment length from cli option when not shifting - close #2 | ||
- Fix issue with samples using the same control | ||
- Add more test data | ||
- Update pipeline with Zerone process and change config and readme | ||
|
||
## Version 0.1.0 | ||
|
||
First version |
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.