Skip to content

Commit

Permalink
gzip patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallowa07 committed Jun 23, 2023
1 parent 63e35f3 commit a60f8eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ various linux flavors

Launch the pipeline execution with the following command:

nextflow run matsengrp/phip-flow -r main -profile docker
nextflow run matsengrp/phip-flow -r V1.11 -profile docker

Note: the ``-r main`` command runs the bleeding edge. For stable releases we recommend specifying
on of the tags associated with a release (e.g. ``-r V1.10``). You may also specify any of the
Note: the ``-r VX.XX`` command runs the specified stable release version of the pipeline.
For running the bleeding edge (not generally recommended) you may also specify ``-r main``.
You may also specify any of the
[parameters](https://matsengrp.github.io/phippery/alignments-pipeline.html#parameters)
for changing the input data and workflow behavior.

Expand Down
4 changes: 2 additions & 2 deletions workflows/output.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ process dump_tall_csv {
shell:
"""
phippery to-tall-csv -o ${params.dataset_prefix}-tall.csv $phip_data
gzip *
gzip *.csv
"""
}

Expand All @@ -23,7 +23,7 @@ process dump_wide_csv {
shell:
"""
phippery to-wide-csv -o $params.dataset_prefix $phip_data
gzip *
gzip *.csv
"""
}

Expand Down

0 comments on commit a60f8eb

Please sign in to comment.