-
Notifications
You must be signed in to change notification settings - Fork 17
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 #332 from aanil/master
New nf-core role to pull methylseq, rnaseq, atacseq etc and other changes
- Loading branch information
Showing
32 changed files
with
188 additions
and
346 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,5 +1,6 @@ | ||
--- | ||
no_version_check: True | ||
export_plots: true | ||
|
||
{% if item.site == "upps" %} | ||
swedac_accredited: False | ||
|
@@ -19,7 +20,7 @@ remote_destination: '[email protected]:/var/local/mqc_reports/' | |
{% elif deployment_environment == "staging" %} | ||
remote_sshkey: "/home/funk_007/ssh_keys/id_rsa" | ||
remote_port: '22' # Optional | ||
remote_destination: 'genomics.www@tools-dev.scilifelab.se:/var/local/mqc_reports/' | ||
remote_destination: 'ngi.web@ngi-internal-dev.scilifelab.se:/home/ngi.web/mqc_reports/' | ||
megaqc_url: http://megaqc.scilifelab.se/api/upload_parse | ||
megaqc_access_token: {{ megaqc_token_sthlm_stage }} | ||
{% endif %} | ||
|
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,15 @@ | ||
--- | ||
neutronstar_repo: "https://github.com/nf-core/neutronstar" | ||
neutronstar_dest: "{{ sw_path }}/neutronstar" | ||
# neutronstar_container_url: "docker://nf-core/neutronstar:{{ rnaseq_version }}" | ||
|
||
neutronstar_container_path: "{{ ngi_containers }}/neutronstar" | ||
# neutronstar_image: "neutronstar-{{ neutronstar_version }}.simg" | ||
neutronstar_version: "157a0c904fd5c8de6a174a184aee4a0ac96a871b" | ||
|
||
# Temporary variables whilst under dev by Remi | ||
neutronstar_container_url: "docker://remiolsen/neutronstar" | ||
neutronstar_version: "1.0.0" | ||
|
||
neutronstar_container_url: "docker://nfcore/neutronstar" | ||
neutronstar_image: "neutronstar.simg" | ||
|
||
supernova_container_url: "docker://nfcore/supernova" | ||
supernova_image: "supernova.simg" | ||
supernova_version: "2.1.1" | ||
supernova_container_path: "{{ ngi_containers }}/supernova" |
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,13 +1,6 @@ | ||
process { | ||
container = '{{ neutronstar_container_path }}/{{ neutronstar_image }}' | ||
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 | ||
busco_folder = '/sw/apps/bioinfo/BUSCO/v2_lineage_sets' | ||
busco_data = 'eukaryota_odb9' | ||
|
||
} |
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,3 +1,3 @@ | ||
nextflow_java: "/sw/comp/java/x86_64/sun_jdk1.8.0_151" | ||
nextflow_version_tag: "v19.04.1" | ||
nextflow_version_tag: "v20.01.0" | ||
nextflow_download_url: "https://github.com/nextflow-io/nextflow/releases/download/{{ nextflow_version_tag }}/nextflow" |
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,13 @@ | ||
nextflow_java: "/sw/comp/java/x86_64/sun_jdk1.8.0_151" | ||
nextflow_version_tag: "v20.01.0" | ||
nextflow_download_url: "https://github.com/nextflow-io/nextflow/releases/download/{{ nextflow_version_tag }}/nextflow" | ||
nf_core_env: "/lupus/ngi/irma3/nf-core-env" | ||
pipelines: | ||
- name: rnaseq | ||
release: 1.4.2 | ||
- name: methylseq | ||
release: 1.4 | ||
- name: ampliseq | ||
release: 1.1.2 | ||
- name: atacseq | ||
release: 1.1.0 |
Oops, something went wrong.