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

Improved fqtk demux --help output readability #45

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions src/bin/commands/demux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ impl DemuxMetric {
/// structures) of one of the types supplied to `--output-types`. FASTQ files have names
/// of the format:
///
/// ```
/// ```bash
/// {sample_id}.{segment_type}{read_num}.fq.gz
/// ```
///
Expand All @@ -559,7 +559,7 @@ impl DemuxMetric {
/// reading a sample barcode, as well as an in-line 8bp sample barcode in read one, the command
/// line would be:
///
/// ```
/// ```bash
/// fqtk demux \
/// --inputs r1.fq.gz i1.fq.gz i2.fq.gz r2.fq.gz \
/// --read-structures 8B92T 8B 8B 100T \
Expand All @@ -569,6 +569,7 @@ impl DemuxMetric {
///
#[derive(Parser, Debug)]
#[command(version)]
#[clap(verbatim_doc_comment)]
pub(crate) struct Demux {
/// One or more input fastq files each corresponding to a sequencing (e.g. R1, I1).
#[clap(long, short = 'i', required = true, num_args = 1..)]
Expand Down
Loading