Closed LilyAnderssonLee closed 1 year ago
@jfy133 Could you please change the MetaPhlAn3
into MetaPhlAn
on the workflow chart within the file docs/output.md
?
Here are the files, you'll need to replace the ones in in docs/images
with the following:
Here are the 3 files (pdf, svg, png), you'll need to replace the ones in in docs/images
with the following:
nf-core lint
overall result: Passed :white_check_mark: :warning:Posted for pipeline commit 087f293
+| ✅ 157 tests passed |+
!| ❗ 1 tests had warnings |!
@jfy133 Apparently I need to modify the regular expression used within the MetaPhlAn4 module in order to run the MetaPhlAn3 database since these two versions of the database include different file formats. Original code:
BT2_DB=`find -L "${metaphlan_db_latest}" -name "*rev.1.bt2l" -exec dirname {} \\;`
BT2_DB_INDEX=`find -L ${metaphlan_db_latest} -name "*.rev.1.bt2l" | sed 's/\\.rev.1.bt2l\$//' | sed 's/.*\\///'`
Modified version:
BT2_DB=`find -L "${metaphlan_db_latest}" -name "*rev.1.bt2*" -exec dirname {} \\;`
BT2_DB_INDEX=`find -L ${metaphlan_db_latest} -name "*.rev.1.bt2*" | sed 's/\\.rev.1.bt2.*\$//' | sed 's/.*\\///'`
I will create a PR to update the MetaPhlAn4 module if it's ok with you.
Yup sure!
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).