-
Notifications
You must be signed in to change notification settings - Fork 10
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 #5 from nf-core/dev
Push for first release!
- Loading branch information
Showing
30 changed files
with
592 additions
and
650 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ data/ | |
results/ | ||
.DS_Store | ||
tests/test_data | ||
*.pyc |
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,4 @@ | ||
# nf-core/nascent: Changelog | ||
|
||
## v1.0dev - <date> | ||
## v1.0 - 2019-04-16 | ||
Initial release of nf-core/nascent, 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
This file was deleted.
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
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/nascent" target="_blank">nf-core/nascent</a> | ||
analysis pipeline. For information about how to interpret these results, please see the | ||
<a href="https://github.com/nf-core/nascent" target="_blank">documentation</a>. | ||
report_section_order: | ||
nf-core/nascent-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
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 was deleted.
Oops, something went wrong.
This file was deleted.
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
Oops, something went wrong.