Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vaamb committed Nov 24, 2023
1 parent 04eeaf6 commit 829a387
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion q2_cutadapt/_demux.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def _build_demux_command(seqs_dir_fmt, barcode_fhs, per_sample_dir_fmt,
'--pair-adapters',
'-G',
# pylint: disable-next=line-too-long # Increase readability
f'{"^" if anchor_reverse else ""}file:{barcode_fhs["rev"].name}',
f'{"^" if anchor_reverse else ""}file:{barcode_fhs["rev"].name}', # noqa: E501
]
cmd += [
'-p', os.path.join(str(per_sample_dir_fmt), '{name}.2.fastq.gz'),
Expand Down
3 changes: 2 additions & 1 deletion q2_cutadapt/plugin_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@
'`demux emp-*`, which is 0.0 (=0%).',
'anchor_barcode': 'Anchor the barcode. An anchored barcode is '
'expected to occur in full length at the beginning '
'of the sequence. Can fasten demultiplexing if used.',
'of the sequence. Can fasten demultiplexing if '
'used.',
'batch_size': 'The number of samples cutadapt demultiplexes '
'concurrently. Demultiplexing in smaller batches will '
'yield the same result with marginal speed loss, and '
Expand Down

0 comments on commit 829a387

Please sign in to comment.