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

Move out multiQC and versions #189

Merged
merged 5 commits into from
Aug 24, 2023
Merged

Conversation

maxulysse
Copy link
Member

No description provided.

@github-actions
Copy link

github-actions bot commented Aug 24, 2023

nf-core lint overall result: Passed ✅ ⚠️

Posted for pipeline commit 7f6439c

+| ✅ 134 tests passed       |+
#| ❔  13 tests were ignored |#
!| ❗   7 tests had warnings |!

❗ Test warnings:

  • files_exist - File not found: conf/igenomes.config
  • files_exist - File not found: .github/workflows/awstest.yml
  • files_exist - File not found: .github/workflows/awsfulltest.yml
  • files_exist - File not found: lib/WorkflowFetchngs.groovy
  • nextflow_config - Config manifest.version should end in dev: 1.10.1
  • pipeline_todos - TODO string in methods_description_template.yml: #Update the HTML below to your prefered methods description, e.g. add publication citation for this pipeline
  • schema_description - No description provided in schema for parameter: dbgap_key

❔ Tests ignored:

✅ Tests passed:

Run details

  • nf-core/tools version 2.9
  • Run at 2023-08-24 16:47:42

main.nf Outdated Show resolved Hide resolved
main.nf Show resolved Hide resolved
Copy link
Contributor

@adamrtalbot adamrtalbot left a comment

Choose a reason for hiding this comment

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

It's basically fine, just spotted one or two things.

We should tidy

fetchngs/main.nf

Lines 49 to 67 in 5dab8d0

// Auto-detect input id type
def input_type = ''
if (WorkflowMain.isSraId(ch_input)) {
input_type = 'sra'
} else if (WorkflowMain.isSynapseId(ch_input)) {
input_type = 'synapse'
} else {
exit 1, 'Ids provided via --input not recognised please make sure they are either SRA / ENA / GEO / DDBJ or Synapse ids!'
}
if (params.input_type == input_type) {
if (params.input_type == 'sra') {
include { SRA } from './workflows/sra'
} else if (params.input_type == 'synapse') {
include { SYNAPSE } from './workflows/synapse'
}
} else {
exit 1, "Ids auto-detected as ${input_type}. Please provide '--input_type ${input_type}' as a parameter to the pipeline!"
}
in a separate PR

.github/workflows/ci.yml Show resolved Hide resolved
main.nf Outdated Show resolved Hide resolved
main.nf Outdated Show resolved Hide resolved
main.nf Outdated Show resolved Hide resolved
main.nf Show resolved Hide resolved
main.nf Show resolved Hide resolved
maxulysse and others added 2 commits August 24, 2023 18:43
Co-authored-by: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com>
@maxulysse maxulysse merged commit 54e7d7d into nf-core:refactor Aug 24, 2023
23 checks passed
@maxulysse maxulysse deleted the move_things branch August 24, 2023 17:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants