Skip to content

Commit

Permalink
typo in help
Browse files Browse the repository at this point in the history
  • Loading branch information
Yang Pan committed Jan 12, 2020
1 parent cdc260e commit 21f6ab3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/PEGASAS
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ def get_arg_parser():


def add_pathway_parser( subparsers ):
arg_formatting = subparsers.add_parser("pathway", help='Calculates signaling pathway activaty derived from geneset enrichment metric based on RNA-Seq gene expression')
arg_formatting = subparsers.add_parser("pathway", help='Calculates signaling pathway activity derived from geneset enrichment metric based on RNA-Seq gene expression')
optional_args = arg_formatting._action_groups.pop()
required_args = arg_formatting.add_argument_group('required arguments')
required_args.add_argument('geneExpbySample',help='A TSV format matrix of gene expression values (FPKM, TPM, etc.) where each column is one sample and each row is one gene.')
required_args.add_argument('geneSignatureList',default=config.HALLMARKS50,help='One or multiple gene signature sets of pathway of interest in the format of \'gmt\' (see MSigDB webset).')
required_args.add_argument('groupInfo',help='A TSV format file provides patient ID and phenotype/disease stage in each row.')
optional_args.add_argument('-o','--out-dir', default='PEGASAS_PathwayScore', help='Output folder name of the analysis.')
optional_args.add_argument('-o','--out-dir', default='PEGASAS_pathway', help='Output folder name of the analysis.')
optional_args.add_argument('-n','--num-interval',default=40, help='Number of KS enrichment calculation processes one time.')
optional_args.add_argument('--plotting',default=False, action='store_true', help='Making plots to inspect K-S enrichment scores.')
arg_formatting._action_groups.append(optional_args)
Expand Down

0 comments on commit 21f6ab3

Please sign in to comment.