-
Notifications
You must be signed in to change notification settings - Fork 193
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 #274 from nf-core/dev
Dev > Master for release 1.5
- Loading branch information
Showing
67 changed files
with
2,442 additions
and
822 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
File renamed without changes.
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,10 @@ | ||
# 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 | ||
no-bare-urls: false # tools only - the {{ jinja variables }} break URLs and cause this to error |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ LABEL authors="[email protected],[email protected]" | |
|
||
# Install procps so that Nextflow can poll CPU usage | ||
RUN apt-get update && apt-get install -y procps && apt-get clean -y | ||
RUN conda install conda=4.5.11 | ||
RUN conda install conda=4.6.7 |
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,14 @@ | ||
{ | ||
"pipelines": [ | ||
"atacseq", | ||
"bcellmagic", | ||
"chipseq", | ||
"epitopeprediction", | ||
"exoseq", | ||
"nascent", | ||
"neutronstar", | ||
"rnaseq", | ||
"smrnaseq", | ||
"vipr" | ||
] | ||
} |
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,25 @@ | ||
#!/bin/sh | ||
|
||
create_api_doc() { | ||
make --directory ./docs/api html | ||
} | ||
|
||
remove_source_files() { | ||
git rm -r --cache . | ||
} | ||
|
||
commit_website_files() { | ||
git checkout --orphan api-doc | ||
create_api_doc | ||
remove_source_files | ||
git add docs | ||
git commit --message "Travis build: $TRAVIS_BUILD_NUMBER" | ||
} | ||
|
||
upload_files() { | ||
git remote add nf-core "https://$NF_CORE_BOT@github.com/nf-core/tools.git" > /dev/null 2>&1 | ||
git push --force --quiet --set-upstream nf-core api-doc | ||
} | ||
|
||
commit_website_files | ||
upload_files |
Oops, something went wrong.