-
Notifications
You must be signed in to change notification settings - Fork 950
Fix formatting in yaml files, add yamllint config #1279
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
ef18984
fix yml formatting
mashehu 54687c8
Merge branch 'master' of https://github.com/nf-core/modules
mashehu 34002d7
allow fastq.gz and fq.gz as file input, add meta.yml and test
mashehu 530acec
fix yaml files
mashehu cc28d16
Revert "allow fastq.gz and fq.gz as file input, add meta.yml and test"
mashehu 46211d1
prettier magic!
mashehu 3c53563
fix comments for yamllint
mashehu 67684fa
Merge branch 'master' into add-yamllint-config
drpatelh d6c2c05
remove node version number
mashehu b52a357
Merge branch 'master' of https://github.com/nf-core/modules into add-…
mashehu 7ffc788
Merge branch 'add-yamllint-config' of https://github.com/mashehu/modu…
mashehu 2140c60
fix linting errors
mashehu e8222bf
Merge branch 'master' into add-yamllint-config
drpatelh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,14 +1,14 @@ | ||
| image: nfcore/gitpod:latest | ||
|
|
||
| vscode: | ||
| extensions: # based on nf-core.nf-core-extensionpack | ||
| extensions: # based on nf-core.nf-core-extensionpack | ||
| - codezombiech.gitignore # Language support for .gitignore files | ||
| # - cssho.vscode-svgviewer # SVG viewer | ||
| # - cssho.vscode-svgviewer # SVG viewer | ||
| - davidanson.vscode-markdownlint # Markdown/CommonMark linting and style checking for Visual Studio Code | ||
| - eamodio.gitlens # Quickly glimpse into whom, why, and when a line or code block was changed | ||
| - EditorConfig.EditorConfig # override user/workspace settings with settings found in .editorconfig files | ||
| - Gruntfuggly.todo-tree # Display TODO and FIXME in a tree view in the activity bar | ||
| - mechatroner.rainbow-csv # Highlight columns in csv files in different colors | ||
| # - nextflow.nextflow # Nextflow syntax highlighting | ||
| # - nextflow.nextflow # Nextflow syntax highlighting | ||
| - oderwat.indent-rainbow # Highlight indentation level | ||
| - streetsidesoftware.code-spell-checker # Spelling checker for source code |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -8,4 +8,4 @@ header-increment: false | |
| no-duplicate-header: | ||
| siblings_only: true | ||
| ul-indent: | ||
| indent: 4 | ||
| indent: 4 | ||
This file contains hidden or 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,5 @@ | ||
| extends: default | ||
|
|
||
| rules: | ||
| document-start: disable | ||
| line-length: disable |
This file contains hidden or 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 hidden or 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,50 +1,50 @@ | ||
| name: adapterremoval | ||
| description: Trim sequencing adapters and collapse overlapping reads | ||
| keywords: | ||
| - trimming | ||
| - adapters | ||
| - merging | ||
| - fastq | ||
| - trimming | ||
| - adapters | ||
| - merging | ||
| - fastq | ||
| tools: | ||
| - adapterremoval: | ||
| description: The AdapterRemoval v2 tool for merging and clipping reads. | ||
| homepage: https://github.com/MikkelSchubert/adapterremoval | ||
| documentation: https://adapterremoval.readthedocs.io | ||
| licence: ['GPL v3'] | ||
| - adapterremoval: | ||
| description: The AdapterRemoval v2 tool for merging and clipping reads. | ||
| homepage: https://github.com/MikkelSchubert/adapterremoval | ||
| documentation: https://adapterremoval.readthedocs.io | ||
| licence: ["GPL v3"] | ||
|
|
||
| input: | ||
| - meta: | ||
| type: map | ||
| description: | | ||
| Groovy Map containing sample information | ||
| e.g. [ id:'test', single_end:false, collapse:false ] | ||
| - reads: | ||
| type: file | ||
| description: | | ||
| List of input FastQ files of size 1 and 2 for single-end and paired-end data, | ||
| respectively. | ||
| pattern: "*.{fq,fastq,fg.gz,fastq.gz}" | ||
| - meta: | ||
| type: map | ||
| description: | | ||
| Groovy Map containing sample information | ||
| e.g. [ id:'test', single_end:false, collapse:false ] | ||
| - reads: | ||
| type: file | ||
| description: | | ||
| List of input FastQ files of size 1 and 2 for single-end and paired-end data, | ||
| respectively. | ||
| pattern: "*.{fq,fastq,fg.gz,fastq.gz}" | ||
|
|
||
| output: | ||
| - meta: | ||
| type: map | ||
| description: | | ||
| Groovy Map containing sample information | ||
| e.g. [ id:'test', single_end:false ] | ||
| - reads: | ||
| type: file | ||
| description: | | ||
| List of input adapter trimmed FastQ files of size 1 or 2 for | ||
| single-end or collapsed data and paired-end data, respectively. | ||
| pattern: "*.{fastq.gz}" | ||
| - log: | ||
| type: file | ||
| description: AdapterRemoval log file | ||
| pattern: "*.log" | ||
| - versions: | ||
| type: file | ||
| description: File containing software versions | ||
| pattern: "versions.yml" | ||
| - meta: | ||
| type: map | ||
| description: | | ||
| Groovy Map containing sample information | ||
| e.g. [ id:'test', single_end:false ] | ||
| - reads: | ||
| type: file | ||
| description: | | ||
| List of input adapter trimmed FastQ files of size 1 or 2 for | ||
| single-end or collapsed data and paired-end data, respectively. | ||
| pattern: "*.{fastq.gz}" | ||
| - log: | ||
| type: file | ||
| description: AdapterRemoval log file | ||
| pattern: "*.log" | ||
| - versions: | ||
| type: file | ||
| description: File containing software versions | ||
| pattern: "versions.yml" | ||
|
|
||
| authors: | ||
| - "@maxibor" | ||
| - "@maxibor" |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,44 +1,44 @@ | ||
| name: bandage_image | ||
| description: Render an assembly graph in GFA 1.0 format to PNG and SVG image formats | ||
| keywords: | ||
| - gfa | ||
| - graph | ||
| - assembly | ||
| - visualisation | ||
| - gfa | ||
| - graph | ||
| - assembly | ||
| - visualisation | ||
| tools: | ||
| - bandage: | ||
| description: | | ||
| Bandage - a Bioinformatics Application for Navigating De novo Assembly Graphs Easily | ||
| homepage: https://github.com/rrwick/Bandage | ||
| documentation: https://github.com/rrwick/Bandage | ||
| licence: ['GPL-3.0-or-later'] | ||
| - bandage: | ||
| description: | | ||
| Bandage - a Bioinformatics Application for Navigating De novo Assembly Graphs Easily | ||
| homepage: https://github.com/rrwick/Bandage | ||
| documentation: https://github.com/rrwick/Bandage | ||
| licence: ["GPL-3.0-or-later"] | ||
| input: | ||
| - meta: | ||
| type: map | ||
| description: | | ||
| Groovy Map containing sample information | ||
| e.g. [ id:'test', single_end:false ] | ||
| - gfa: | ||
| type: file | ||
| description: Assembly graph in GFA 1.0 format | ||
| pattern: "*.gfa" | ||
| - meta: | ||
| type: map | ||
| description: | | ||
| Groovy Map containing sample information | ||
| e.g. [ id:'test', single_end:false ] | ||
| - gfa: | ||
| type: file | ||
| description: Assembly graph in GFA 1.0 format | ||
| pattern: "*.gfa" | ||
| output: | ||
| - meta: | ||
| type: map | ||
| description: | | ||
| Groovy Map containing sample information | ||
| e.g. [ id:'test', single_end:false ] | ||
| - png: | ||
| type: file | ||
| description: Bandage image in PNG format | ||
| pattern: "*.png" | ||
| - svg: | ||
| type: file | ||
| description: Bandage image in SVG format | ||
| pattern: "*.svg" | ||
| - versions: | ||
| type: file | ||
| description: File containing software versions | ||
| pattern: "versions.yml" | ||
| - meta: | ||
| type: map | ||
| description: | | ||
| Groovy Map containing sample information | ||
| e.g. [ id:'test', single_end:false ] | ||
| - png: | ||
| type: file | ||
| description: Bandage image in PNG format | ||
| pattern: "*.png" | ||
| - svg: | ||
| type: file | ||
| description: Bandage image in SVG format | ||
| pattern: "*.svg" | ||
| - versions: | ||
| type: file | ||
| description: File containing software versions | ||
| pattern: "versions.yml" | ||
| authors: | ||
| - "@heuermh" | ||
| - "@heuermh" |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.