Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
Hub
hic
Commits
94408c9e
Unverified
Commit
94408c9e
authored
5 years ago
by
Nicolas Servant
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #4 from nservant/dev
fix bug in travis
parents
db760f4b
154616a3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+1
-1
1 addition, 1 deletion
.travis.yml
conf/base.config
+1
-1
1 addition, 1 deletion
conf/base.config
environment.yml
+2
-1
2 additions, 1 deletion
environment.yml
nextflow.config
+3
-13
3 additions, 13 deletions
nextflow.config
with
7 additions
and
16 deletions
.travis.yml
+
1
−
1
View file @
94408c9e
...
@@ -13,7 +13,7 @@ before_install:
...
@@ -13,7 +13,7 @@ before_install:
# Pull the docker image first so the test doesn't wait for this
# Pull the docker image first so the test doesn't wait for this
-
docker pull nfcore/hic:dev
-
docker pull nfcore/hic:dev
# Fake the tag locally so that the pipeline runs properly
# Fake the tag locally so that the pipeline runs properly
-
docker tag nfcore/hic:dev nfcore/hic:
latest
-
docker tag nfcore/hic:dev nfcore/hic:
dev
install
:
install
:
# Install Nextflow
# Install Nextflow
...
...
This diff is collapsed.
Click to expand it.
conf/base.config
+
1
−
1
View file @
94408c9e
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
process
{
process
{
container
=
p
aram
s
.
container
container
=
p
roces
s
.
container
cpus
= {
check_max
(
2
,
'cpus'
) }
cpus
= {
check_max
(
2
,
'cpus'
) }
memory
= {
check_max
(
8
.
GB
*
task
.
attempt
,
'memory'
) }
memory
= {
check_max
(
8
.
GB
*
task
.
attempt
,
'memory'
) }
...
...
This diff is collapsed.
Click to expand it.
environment.yml
+
2
−
1
View file @
94408c9e
...
@@ -4,9 +4,10 @@ channels:
...
@@ -4,9 +4,10 @@ channels:
-
bioconda
-
bioconda
-
defaults
-
defaults
dependencies
:
dependencies
:
-
python=2.7.1
1
-
python=2.7.1
3
-
conda-forge::scipy=1.0.1
-
conda-forge::scipy=1.0.1
-
conda-forge::numpy=1.9.3
-
conda-forge::numpy=1.9.3
-
conda-forge::r-markdown=0.9
-
bcbio::bx-python=0.7.3
-
bcbio::bx-python=0.7.3
-
bioconda::pysam=0.14.1
-
bioconda::pysam=0.14.1
-
cooler=0.8.3
-
cooler=0.8.3
...
...
This diff is collapsed.
Click to expand it.
nextflow.config
+
3
−
13
View file @
94408c9e
...
@@ -11,11 +11,6 @@
...
@@ -11,11 +11,6 @@
//
Global
default
params
,
used
in
configs
//
Global
default
params
,
used
in
configs
params
{
params
{
//
Container
slug
.
Stable
releases
should
specify
release
tag
!
//
Developmental
code
should
specify
:
latest
//
container
=
'nfcore/hic:latest'
container
=
'nfcore/hic:latest'
//
Workflow
flags
//
Workflow
flags
//
TODO
nf
-
core
:
Specify
your
pipeline
'
s
command
line
flags
//
TODO
nf
-
core
:
Specify
your
pipeline
'
s
command
line
flags
reads
=
"*{1,2}.fastq.gz"
reads
=
"*{1,2}.fastq.gz"
...
@@ -42,6 +37,7 @@ params {
...
@@ -42,6 +37,7 @@ params {
custom_config_version
=
'master'
custom_config_version
=
'master'
}
}
process
.
container
=
'nfcore/hic:dev'
//
Load
base
.
config
by
default
for
all
pipelines
//
Load
base
.
config
by
default
for
all
pipelines
includeConfig
'conf/base.config'
includeConfig
'conf/base.config'
...
@@ -57,14 +53,8 @@ profiles {
...
@@ -57,14 +53,8 @@ profiles {
awsbatch
{
includeConfig
'conf/awsbatch.config'
}
awsbatch
{
includeConfig
'conf/awsbatch.config'
}
conda
{
process
.
conda
=
"$baseDir/environment.yml"
}
conda
{
process
.
conda
=
"$baseDir/environment.yml"
}
debug
{
process
.
beforeScript
=
'echo $HOSTNAME'
}
debug
{
process
.
beforeScript
=
'echo $HOSTNAME'
}
docker
{
docker
{
docker
.
enabled
=
true
}
docker
.
enabled
=
true
singularity
{
singularity
.
enabled
=
true
}
process
.
container
=
params
.
container
}
singularity
{
singularity
.
enabled
=
true
process
.
container
= {
"shub://${params.container.replace('nfcore', 'nf-core')}"
}
}
test
{
includeConfig
'conf/test.config'
}
test
{
includeConfig
'conf/test.config'
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment