Skip to content

Commit 1cc8639

Browse files
committed
Merge develop for v0.2.0 and update changelog
2 parents 2aa5dc5 + 02f0b04 commit 1cc8639

22 files changed

+404
-72
lines changed

.circ

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# add project folder to PATH
2+
projectDir=$(dirname $(realpath $_))
3+
export PATH=${projectDir}:$PATH
4+
5+
NXF_OPTIONS=$(nextflow help run | egrep -o '\-\w+\.?' | sort -u)
6+
PIPE_OPTIONS=$(egrep log chipseq-pipeline.nf | egrep -o '\-{2}[^ ]+ ')
7+
8+
_ci() {
9+
local cur prev
10+
11+
cur=${COMP_WORDS[COMP_CWORD]}
12+
prev=${COMP_WORDS[COMP_CWORD-1]}
13+
14+
case ${COMP_CWORD} in
15+
1)
16+
COMPREPLY=($(compgen -W "run validate cleanup" ${cur}))
17+
;;
18+
[2-9]|[1-9][0-9])
19+
case ${COMP_WORDS[1]} in
20+
run)
21+
case "${cur}" in
22+
-*)
23+
COMPREPLY=($(compgen -o default -W "$NXF_OPTIONS $PIPE_OPTIONS" -- ${cur}))
24+
;;
25+
*)
26+
COMPREPLY=($(compgen -o default))
27+
;;
28+
esac
29+
;;
30+
validate)
31+
COMPREPLY=($(compgen -f ${cur}))
32+
;;
33+
esac
34+
;;
35+
*)
36+
COMPREPLY=()
37+
;;
38+
esac
39+
}
40+
41+
# add command autocompletion
42+
complete -o nospace -F _ci ci

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# ChIP-nf Changelog
22

3+
## Version 0.2.0
4+
5+
- Update groupTuple for merging and fix input sorting for Zerone - resolves #3
6+
- Add paramter to set MACS2 temp dir and set default to process folder
7+
- Use global fragment length from cli option when not shifting - close #2
8+
- Fix issue with samples using the same control
9+
- Add more test data
10+
- Update pipeline with Zerone process and change config and readme
11+
312
## Version 0.1.0
413

514
First version

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:macs2-outfiles: https://github.com/taoliu/MACS#output-files
55
:pvalue: pass:q[[red]#___-log_10(P)___#]
66
:circle-shield: https://circleci.com/gh/guigolab/chip-nf.svg?style=shield
7-
:nf-shield: https://img.shields.io/badge/nextflow-%E2%89%A50.17.0-blue.svg
7+
:nf-shield: https://img.shields.io/badge/nextflow-%E2%89%A50.23.1-blue.svg
88

99
image:{nf-shield}["Nextflow", link="https://nextflow.io", window="_blank"]
1010
image:{circle-shield}["CircleCI status", link="https://circleci.com/gh/guigolab/chip-nf", window="_blank"]

0 commit comments

Comments
 (0)