Skip to content

Commit 092a3a7

Browse files
authored
Merge pull request #113 from drpatelh/master
Bump version to 1.1.0
2 parents 7730c1f + c303419 commit 092a3a7

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ before_install:
1414
- docker pull nfcore/chipseq:dev
1515
# Fake the tag locally so that the pipeline runs properly
1616
# Looks weird when this is :dev to :dev, but makes sense when testing code for a release (:dev to :1.0.1)
17-
- docker tag nfcore/chipseq:dev nfcore/chipseq:dev
17+
- docker tag nfcore/chipseq:dev nfcore/chipseq:1.1.0
1818

1919
install:
2020
# Install Nextflow
@@ -39,4 +39,4 @@ script:
3939
# Lint the documentation
4040
- markdownlint ${TRAVIS_BUILD_DIR} -c ${TRAVIS_BUILD_DIR}/.github/markdownlint.yml
4141
# Run the pipeline with the test profile
42-
- nextflow run ${TRAVIS_BUILD_DIR} -profile test,docker
42+
- nextflow run ${TRAVIS_BUILD_DIR} -profile test,docker -ansi-log false

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unpublished Version / DEV]
8+
## [1.1.0] - 2019-11-01
99

1010
### `Added`
1111

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ LABEL authors="Philip Ewels" \
44

55
COPY environment.yml /
66
RUN conda env create -f /environment.yml && conda clean -a
7-
RUN conda env export --name nf-core-chipseq-1.0.1dev > nf-core-chipseq-1.0.1dev.yml
8-
ENV PATH /opt/conda/envs/nf-core-chipseq-1.0.1dev/bin:$PATH
7+
RUN conda env export --name nf-core-chipseq-1.1.0 > nf-core-chipseq-1.1.0.yml
8+
ENV PATH /opt/conda/envs/nf-core-chipseq-1.1.0/bin:$PATH

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# You can use this file to create a conda environment for this pipeline:
22
# conda env create -f environment.yml
3-
name: nf-core-chipseq-1.0.1dev
3+
name: nf-core-chipseq-1.1.0
44
channels:
55
- conda-forge
66
- bioconda

main.nf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1535,7 +1535,7 @@ workflow.onComplete {
15351535
// Set up the e-mail variables
15361536
def subject = "[nf-core/chipseq] Successful: $workflow.runName"
15371537
if (!workflow.success) {
1538-
subject = "[nf-core/chipseq] FAILED: $workflow.runName"
1538+
subject = "[nf-core/chipseq] FAILED: $workflow.runName"
15391539
}
15401540
def email_fields = [:]
15411541
email_fields['version'] = workflow.manifest.version
@@ -1601,21 +1601,21 @@ workflow.onComplete {
16011601
// Send the HTML e-mail
16021602
if (email_address) {
16031603
try {
1604-
if (params.plaintext_email) { throw GroovyException('Send plaintext e-mail, not HTML') }
1605-
// Try to send HTML e-mail using sendmail
1606-
[ 'sendmail', '-t' ].execute() << sendmail_html
1607-
log.info "[nf-core/chipseq] Sent summary e-mail to $email_address (sendmail)"
1604+
if (params.plaintext_email) { throw GroovyException('Send plaintext e-mail, not HTML') }
1605+
// Try to send HTML e-mail using sendmail
1606+
[ 'sendmail', '-t' ].execute() << sendmail_html
1607+
log.info "[nf-core/chipseq] Sent summary e-mail to $email_address (sendmail)"
16081608
} catch (all) {
1609-
// Catch failures and try with plaintext
1610-
[ 'mail', '-s', subject, email_address ].execute() << email_txt
1611-
log.info "[nf-core/chipseq] Sent summary e-mail to $email_address (mail)"
1609+
// Catch failures and try with plaintext
1610+
[ 'mail', '-s', subject, email_address ].execute() << email_txt
1611+
log.info "[nf-core/chipseq] Sent summary e-mail to $email_address (mail)"
16121612
}
16131613
}
16141614

16151615
// Write summary e-mail HTML to a file
16161616
def output_d = new File("${params.outdir}/pipeline_info/")
16171617
if (!output_d.exists()) {
1618-
output_d.mkdirs()
1618+
output_d.mkdirs()
16191619
}
16201620
def output_hf = new File(output_d, "pipeline_report.html")
16211621
output_hf.withWriter { w -> w << email_html }
@@ -1628,9 +1628,9 @@ workflow.onComplete {
16281628
c_red = params.monochrome_logs ? '' : "\033[0;31m";
16291629

16301630
if (workflow.stats.ignoredCount > 0 && workflow.success) {
1631-
log.info "${c_purple}Warning, pipeline completed, but with errored process(es) ${c_reset}"
1632-
log.info "${c_red}Number of ignored errored process(es) : ${workflow.stats.ignoredCount} ${c_reset}"
1633-
log.info "${c_green}Number of successfully ran process(es) : ${workflow.stats.succeedCount} ${c_reset}"
1631+
log.info "${c_purple}Warning, pipeline completed, but with errored process(es) ${c_reset}"
1632+
log.info "${c_red}Number of ignored errored process(es) : ${workflow.stats.ignoredCount} ${c_reset}"
1633+
log.info "${c_green}Number of successfully ran process(es) : ${workflow.stats.succeedCount} ${c_reset}"
16341634
}
16351635

16361636
if (workflow.success) {

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ params {
8585

8686
// Container slug. Stable releases should specify release tag!
8787
// Developmental code should specify :dev
88-
process.container = 'nfcore/chipseq:dev'
88+
process.container = 'nfcore/chipseq:1.1.0'
8989

9090
// Load base.config by default for all pipelines
9191
includeConfig 'conf/base.config'
@@ -147,7 +147,7 @@ manifest {
147147
description = 'ChIP-seq peak-calling and differential analysis pipeline.'
148148
mainScript = 'main.nf'
149149
nextflowVersion = '>=19.04.0'
150-
version = '1.0.1dev'
150+
version = '1.1.0'
151151
}
152152

153153
// Function to ensure that resource requirements don't go beyond

0 commit comments

Comments
 (0)