mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Changing publishDir
to take params.outdir
and modifying yml
for github actions
This commit is contained in:
parent
5de4c86bac
commit
5f9cf40f5a
2 changed files with 4 additions and 7 deletions
8
.github/workflows/tcoffee.yml
vendored
8
.github/workflows/tcoffee.yml
vendored
|
@ -18,15 +18,13 @@ jobs:
|
||||||
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
|
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
|
||||||
git submodule sync --recursive
|
git submodule sync --recursive
|
||||||
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
||||||
ls -la test-datasets/tools/tcoffee/input/
|
|
||||||
echo "============"
|
|
||||||
rm ./test-datasets/tools/tcoffee/input/BBA0001.tfa
|
|
||||||
cp test-datasets/general/fasta/msa/BBA0001.tfa ./test-datasets/tools/tcoffee/input/
|
|
||||||
|
|
||||||
- name: Install Nextflow
|
- name: Install Nextflow
|
||||||
run: |
|
run: |
|
||||||
wget -qO- get.nextflow.io | bash
|
wget -qO- get.nextflow.io | bash
|
||||||
sudo mv nextflow /usr/local/bin/
|
sudo mv nextflow /usr/local/bin/
|
||||||
|
|
||||||
|
ls -la test-datasets/tools/tcoffee/input/
|
||||||
|
|
||||||
# Test the module
|
# Test the module
|
||||||
- run: nextflow run ./tools/tcoffee/test/ -ansi-log false
|
- run: cd tools/tcoffee/test/ | nextflow run . -ansi-log false
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
process tcoffee {
|
process tcoffee {
|
||||||
tag {fasta}
|
tag {fasta}
|
||||||
// publishDir "${params.outdir}/tcoffee" //not working
|
publishDir "${params.outdir}/tcoffee"
|
||||||
publishDir "${baseDir}/results/tcoffee", mode: 'copy'
|
|
||||||
container 'quay.io/biocontainers/t_coffee:11.0.8--py27pl5.22.0_5'
|
container 'quay.io/biocontainers/t_coffee:11.0.8--py27pl5.22.0_5'
|
||||||
|
|
||||||
input:
|
input:
|
||||||
|
|
Loading…
Reference in a new issue