-
Notifications
You must be signed in to change notification settings - Fork 149
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
correct merging error #437
Closed
Closed
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
52931d7
update multiqc module
ftabaro 92da3ac
update multiqc local module
ftabaro df9ec1e
Merge branch 'dev' into fix-multiqc-shared-mem-error
ftabaro 62e6e7f
revert spacing
ftabaro 1b7b81e
update CHANGELOG.md
ftabaro 1bd251d
correct merging error
ftabaro 671de70
:Merge branch 'dev' into fix-gffread
ftabaro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,70 +1,69 @@ | ||
process MULTIQC { | ||
label 'process_medium' | ||
|
||
conda "bioconda::multiqc=1.23" | ||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? | ||
'https://depot.galaxyproject.org/singularity/multiqc:1.23--pyhdfd78af_0' : | ||
'biocontainers/multiqc:1.23--pyhdfd78af_0' }" | ||
conda "bioconda::multiqc=1.25.1" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These changes have already been included on #436, if would be great if you could do a clean PR only with the fix |
||
container "${workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container | ||
? 'https://depot.galaxyproject.org/singularity/multiqc:1.25.1--pyhdfd78af_0' | ||
: 'biocontainers/multiqc:1.25.1--pyhdfd78af_0'}" | ||
|
||
input: | ||
path workflow_summary | ||
path multiqc_config | ||
path mqc_custom_config | ||
path logo | ||
|
||
path ('fastqc/*') | ||
path ('trimgalore/fastqc/*') | ||
path ('trimgalore/*') | ||
path 'fastqc/*' | ||
path 'trimgalore/fastqc/*' | ||
path 'trimgalore/*' | ||
|
||
path ('alignment/library/*') | ||
path ('alignment/library/*') | ||
path ('alignment/library/*') | ||
path 'alignment/library/*' | ||
path 'alignment/library/*' | ||
path 'alignment/library/*' | ||
|
||
path ('alignment/merged_library/unfiltered/*') | ||
path ('alignment/merged_library/unfiltered/*') | ||
path ('alignment/merged_library/unfiltered/*') | ||
path ('alignment/merged_library/unfiltered/picard_metrics/*') | ||
path 'alignment/merged_library/unfiltered/*' | ||
path 'alignment/merged_library/unfiltered/*' | ||
path 'alignment/merged_library/unfiltered/*' | ||
path 'alignment/merged_library/unfiltered/picard_metrics/*' | ||
|
||
path ('alignment/merged_library/filtered/*') | ||
path ('alignment/merged_library/filtered/*') | ||
path ('alignment/merged_library/filtered/*') | ||
path ('alignment/merged_library/filtered/picard_metrics/*') | ||
path 'alignment/merged_library/filtered/*' | ||
path 'alignment/merged_library/filtered/*' | ||
path 'alignment/merged_library/filtered/*' | ||
path 'alignment/merged_library/filtered/picard_metrics/*' | ||
|
||
path ('preseq/*') | ||
path 'preseq/*' | ||
|
||
path ('deeptools/*') | ||
path ('deeptools/*') | ||
path 'deeptools/*' | ||
path 'deeptools/*' | ||
|
||
path ('phantompeakqualtools/*') | ||
path ('phantompeakqualtools/*') | ||
path ('phantompeakqualtools/*') | ||
path ('phantompeakqualtools/*') | ||
path 'phantompeakqualtools/*' | ||
path 'phantompeakqualtools/*' | ||
path 'phantompeakqualtools/*' | ||
path 'phantompeakqualtools/*' | ||
|
||
path ('macs3/peaks/*') | ||
path ('macs3/peaks/*') | ||
path ('macs3/annotation/*') | ||
path ('macs3/featurecounts/*') | ||
path 'macs3/peaks/*' | ||
path 'macs3/peaks/*' | ||
path 'macs3/annotation/*' | ||
path 'macs3/featurecounts/*' | ||
|
||
path ('deseq2/*') | ||
path ('deseq2/*') | ||
path 'deseq2/*' | ||
path 'deseq2/*' | ||
|
||
output: | ||
path "*multiqc_report.html", emit: report | ||
path "*_data" , emit: data | ||
path "*_plots" , optional:true, emit: plots | ||
path "*_plots" , optional: true, emit: plots | ||
path "versions.yml" , emit: versions | ||
|
||
when: | ||
task.ext.when == null || task.ext.when | ||
|
||
script: | ||
def args = task.ext.args ?: '' | ||
def custom_config = params.multiqc_config ? "--config $mqc_custom_config" : '' | ||
def custom_config = params.multiqc_config ? "--config ${mqc_custom_config}" : '' | ||
""" | ||
multiqc \\ | ||
-f \\ | ||
$args \\ | ||
$custom_config \\ | ||
${args} \\ | ||
${custom_config} \\ | ||
. | ||
|
||
cat <<-END_VERSIONS > versions.yml | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update changelog with the corresponding message, this refers to the previous PR #436