Skip to content
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

markdup_java_options docs #167

Merged
merged 3 commits into from
Mar 30, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
- [#158](https://github.com/nf-core/sarek/pull/158) - Added `ggplot2` version `3.3.0`
- [#163](https://github.com/nf-core/sarek/pull/163) - Add [MSIsensor](https://github.com/ding-lab/msisensor) in tools and container
- [#164](https://github.com/nf-core/sarek/pull/164) - Add `--no_gatk_spark` params and tests
- [#166](https://github.com/nf-core/sarek/issues/166) - Add `--markdup_java_options` documentation

### Changed

Expand Down
9 changes: 9 additions & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
- [Job resources](#job-resources)
- [Automatic resubmission](#automatic-resubmission)
- [Custom resource requests](#custom-resource-requests)
- [--markdup_java_options](#--markdup_java_options)
- [AWSBatch specific parameters](#awsbatch-specific-parameters)
- [--awsqueue](#--awsqueue)
- [--awsregion](#--awsregion)
Expand Down Expand Up @@ -777,6 +778,14 @@ You can then create a pull request to the `nf-core/configs` repository with the

If you have any questions or issues please send us a message on [Slack](https://nf-co.re/join/slack).

## --markdup_java_options

To control the java options necessary for the GATK `MarkDuplicates` process, you can set this parameter. For example (those are the default settings):

```bash
--markdup_java_options "-Xms4000m -Xmx7g"
```

## AWSBatch specific parameters

Running the pipeline on AWSBatch requires a couple of specific parameters to be set according to your AWSBatch configuration.
Expand Down