Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New nf-core role to pull methylseq, rnaseq, atacseq etc and other changes #332

Merged
merged 23 commits into from
Feb 17, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
141b42f
Add nf-core role
Dec 6, 2019
6f1baa9
Moved rnaseq, methylseq, ampliseq, atacseq to nfcore and upgraded neu…
aanil Jan 21, 2020
dc62f3b
Updated install.yml with nf-core
aanil Jan 21, 2020
114e370
Incorporate past changes
aanil Jan 21, 2020
858b02f
Update ngi reports and statusdb versions
aanil Jan 23, 2020
e243fba
Update sarek role to move to nf-core
aanil Jan 24, 2020
96eeeea
Revert "Update sarek role to move to nf-core"
aanil Jan 24, 2020
b79ec05
Revert "Update ngi reports and statusdb versions"
aanil Jan 24, 2020
187094f
Revert "Incorporate past changes"
aanil Jan 24, 2020
141f7d1
Revert "Updated install.yml with nf-core"
aanil Jan 24, 2020
f606eb2
Adding back conflicting files
aanil Jan 24, 2020
52094ed
Adding changes to sarek, standalone scripts, taca, rnaseq, methylseq,…
aanil Jan 24, 2020
11517b0
Fix issues in new Sarek script and neutronstar
aanil Jan 27, 2020
9d06e12
Add supernova and minor changes
aanil Jan 30, 2020
485ac02
Syntax bug fix in neutronstar
aanil Jan 30, 2020
381e14e
Update with latest ngi_reports version
aanil Jan 31, 2020
94b086d
Updated neutronstar parameters
aanil Feb 4, 2020
1728f9c
Updated location for downloading multiqc reports on staging env
aanil Feb 5, 2020
38ed3cc
Add export_plots to multiqc config
aanil Feb 6, 2020
cac433e
Removed container lists in nf-core role
aanil Feb 13, 2020
8c0c660
Updated neutronstar to use common irma config plus removed custom con…
aanil Feb 13, 2020
5763420
Updated neutronstar to use profile uppmax
aanil Feb 13, 2020
fc35214
Updated nextflow version
aanil Feb 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated neutronstar to use common irma config plus removed custom con…
…fig base in nf-core
  • Loading branch information
aanil committed Feb 13, 2020
commit 8c0c66075604699f3ba7ddd5f1deed01117b8fe1
1 change: 1 addition & 0 deletions roles/neutronstar/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
dest: "{{ ngi_pipeline_conf }}/{{ bash_env_sthlm_script }}"
line: >
alias neutronstar='nextflow run {{ neutronstar_dest }}/main.nf -profile singularity \
-c {{ ngi_pipeline_conf }}/nextflow_irma_{{ item.site }}.config \
-c {{ ngi_pipeline_conf }}/neutronstar_{{ item.site }}.config --supernova_container {{ supernova_container_path }}'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool 👍

We could move supernova_container in to the neutronstar config file, but seeing as we will hopefully get rid of this config file before long, I think it's better how you currently have it ✅

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

backup: no
with_items:
Expand Down
15 changes: 1 addition & 14 deletions roles/neutronstar/templates/neutronstar_site.config
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
process {
container = '{{ neutronstar_container_path }}/{{ neutronstar_image }}'
executor = 'slurm'
withName:multiqc {
container = null
executor = 'local'
}
}
process.container = '{{ neutronstar_container_path }}/{{ neutronstar_image }}'
params {
project = "{{ item.project_id }}"
multiqc_config = "{{ ngi_pipeline_conf }}/multiqc_{{ item.site }}_config.yml"
clusterOptions = "-A {{ item.project_id }} -p node"
max_memory = 250.GB
max_cpus = 16
max_time = 240.h
busco_folder = '/sw/apps/bioinfo/BUSCO/v2_lineage_sets'
busco_data = 'eukaryota_odb9'

Expand Down
1 change: 0 additions & 1 deletion roles/nf-core/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
dest: "{{ ngi_pipeline_conf }}/{{ item.1.script }}"
line: >
alias {{ item.0.name }}='nextflow run {{ sw_path }}{{ item.0.name }}/workflow/ \
--custom_config_base {{ sw_path }}{{ item.0.name }}/configs \
-profile uppmax \
-c {{ ngi_pipeline_conf }}/nextflow_irma_{{ item.1.site }}.config \
-c {{ ngi_pipeline_conf }}/{{ item.0.name }}_{{ item.1.site }}.config'
Expand Down