Skip to content

Commit

Permalink
minor-change
Browse files Browse the repository at this point in the history
  • Loading branch information
zprobot committed Nov 14, 2023
1 parent 49f2a19 commit fafb60e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Example:
--report_path diann_report.tsv
--design_file PXD037682.sdrf_openms_design.tsv
--fasta_path Homo-sapiens-uniprot-reviewed-contaminants-decoy-202210.fasta
--modifications ['null','null']
--modifications 'Carbamidomethyl (C)' 'null'
--pg_path diann_report.pg_matrix.tsv
--pr_path diann_report.pr_matrix.tsv
--qvalue_threshold 0.05
Expand Down
3 changes: 3 additions & 0 deletions python/quantmsio/quantms_io/commands/diann_convert_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from quantms_io.core.project import create_uuid_filename
from typing import List
import os

CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
@click.group(context_settings=CONTEXT_SETTINGS)
def cli():
Expand Down Expand Up @@ -30,6 +31,8 @@ def cli():
)
@click.option(
"--modifications",
nargs=2,
type=str,
help="a list contains fix modifications and variable modifications",
required=True,
)
Expand Down

0 comments on commit fafb60e

Please sign in to comment.