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

doc: Clarify that multiple output types may be specified #42

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <SAMPLE_METADATA>
Expand Down
2 changes: 2 additions & 0 deletions src/bin/commands/demux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<char>,

Expand Down
Loading