-
Notifications
You must be signed in to change notification settings - Fork 38
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 #38 from nf-core/dev
Major changes towards release
- Loading branch information
Showing
32 changed files
with
1,467 additions
and
689 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,9 @@ | ||
# Markdownlint configuration file | ||
default: true, | ||
line-length: false | ||
no-multiple-blanks: 0 | ||
blanks-around-headers: false | ||
blanks-around-lists: false | ||
header-increment: false | ||
no-duplicate-header: | ||
siblings_only: true |
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 |
---|---|---|
|
@@ -5,4 +5,7 @@ results/ | |
.DS_Store | ||
tests/test_data | ||
runBcellmagic.sh | ||
.idea/ | ||
.idea/ | ||
*.pyc | ||
node_modules/ | ||
package-lock.json |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# nf-core/bcellmagic: Changelog | ||
|
||
## v1.0dev - <date> | ||
## v1.0.0 - 2019-04-16 - "Alohomora" | ||
|
||
Initial release of nf-core/bcellmagic, created with the [nf-core](http://nf-co.re/) template. |
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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
FROM kleinstein/immcantation:2.6.0 | ||
LABEL authors="Gisela Gabernet" \ | ||
FROM nfcore/base | ||
LABEL authors="Gisela Gabernet, Simon Heumos, Alexander Peltzer" \ | ||
description="Docker image containing all requirements for nf-core/bcellmagic pipeline" | ||
RUN sudo dnf install -y bash | ||
|
||
COPY environment.yml / | ||
RUN conda env create -f /environment.yml && conda clean -a | ||
ENV PATH /opt/conda/envs/nf-core-bcellmagic-1.0.0/bin:$PATH | ||
RUN ln -s /opt/conda/envs/nf-core-bcellmagic-1.0.0/bin/vsearch /opt/conda/envs/nf-core-bcellmagic-1.0.0/bin/usearch |
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,9 @@ | ||
report_comment: > | ||
This report has been generated by the <a href="https://github.com/nf-core/bcellmagic" target="_blank">nf-core/bcellmagic</a> | ||
analysis pipeline. For information about how to interpret these results, please see the | ||
<a href="https://github.com/nf-core/bcellmagic" target="_blank">documentation</a>. | ||
report_section_order: | ||
nf-core/bcellmagic-software-versions: | ||
order: -1000 | ||
|
||
export_plots: true |
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,11 +1,36 @@ | ||
To: $email | ||
Subject: $subject | ||
Mime-Version: 1.0 | ||
Content-Type: multipart/related;boundary="nfmimeboundary" | ||
Content-Type: multipart/related;boundary="nfcoremimeboundary" | ||
|
||
--nfmimeboundary | ||
--nfcoremimeboundary | ||
Content-Type: text/html; charset=utf-8 | ||
|
||
$email_html | ||
|
||
--nfmimeboundary-- | ||
<% | ||
if (mqcFile){ | ||
def mqcFileObj = new File("$mqcFile") | ||
if (mqcFileObj.length() < mqcMaxSize){ | ||
out << """ | ||
--nfcoremimeboundary | ||
Content-Type: text/html; name=\"multiqc_report\" | ||
Content-Transfer-Encoding: base64 | ||
Content-ID: <mqcreport> | ||
Content-Disposition: attachment; filename=\"${mqcFileObj.getName()}\" | ||
|
||
${mqcFileObj. | ||
bytes. | ||
encodeBase64(). | ||
toString(). | ||
tokenize( '\n' )*. | ||
toList()*. | ||
collate( 76 )*. | ||
collect { it.join() }. | ||
flatten(). | ||
join( '\n' )} | ||
""" | ||
}} | ||
%> | ||
|
||
--nfcoremimeboundary-- |
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.