From 02b144ff639d5eec19db9b724b372f50cb7e9ea0 Mon Sep 17 00:00:00 2001 From: Matt Stone Date: Thu, 25 Apr 2024 08:35:07 -0400 Subject: [PATCH] doc: Clarify that multiple output types may be specified --- README.md | 2 ++ src/bin/commands/demux.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 215616a..372c1a4 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,8 @@ Options: The read structure types to write to their own files (Must be one of T, B, or M for template reads, sample barcode reads, and molecular barcode reads) + Multiple output types may be specified as a space-delimited list. + [default: T] -s, --sample-metadata diff --git a/src/bin/commands/demux.rs b/src/bin/commands/demux.rs index ab727db..e2bec29 100644 --- a/src/bin/commands/demux.rs +++ b/src/bin/commands/demux.rs @@ -580,6 +580,8 @@ pub(crate) struct Demux { /// The read structure types to write to their own files (Must be one of T, B, or M for /// template reads, sample barcode reads, and molecular barcode reads). + /// + /// Multiple output types may be specified as a space-delimited list. #[clap(long, short='b', default_value="T", num_args = 1.. )] output_types: Vec,