Skip to content

Commit

Permalink
Small fixes in pipeline template
Browse files Browse the repository at this point in the history
  • Loading branch information
drpatelh committed Jul 14, 2021
1 parent f9bc301 commit d7ebfa1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions nf_core/pipeline-template/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ indent_style = space
[*.{yml,yaml}]
indent_size = 2

[*.json]
insert_final_newline = unset

# These files are edited and tested upstream in nf-core/modules
[/modules/nf-core/**]
charset = unset
Expand Down
2 changes: 1 addition & 1 deletion nf_core/pipeline-template/.github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

- uses: actions/setup-node@v1
with:
node-version: "10"
node-version: '10'

- name: Install editorconfig-checker
run: npm install -g editorconfig-checker
Expand Down
2 changes: 1 addition & 1 deletion nf_core/pipeline-template/bin/scrape_software_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
print(" <dt>{}</dt><dd><samp>{}</samp></dd>".format(k, v))
print(" </dl>")

# Write out regexes as csv file:
# Write out as tsv file:
with open("software_versions.tsv", "w") as f:
for k, v in sorted(results.items()):
f.write("{}\t{}\n".format(k, v))

0 comments on commit d7ebfa1

Please sign in to comment.