Skip to content

Commit

Permalink
added new arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
panushri25 committed Oct 11, 2023
1 parent ba8e24e commit 5d23d98
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions chrombpnet/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ def general_training_args(required_train, optional_train):
optional_train.add_argument("-a","--architecture-from-file",type=str,required=False, default=None, help="Model to use for training")
optional_train.add_argument("-fp","--file-prefix",type=str,required=False, default=None, help="File prefix for output to use. All the files will be prefixed with this string if provided.")
optional_train.add_argument('-hp', '--html-prefix', required=False, default="./", help="The html prefix to use for the html file output.")
optional_train.add_argument('--bsort', required=False, default=False, action='store_true', help="In prpeprocess, by deafult we sort bam using unix sort but sometimes LC collate can cause issues, so this can be set to use betools sort which works well but is memory intensive..")
optional_train.add_argument('--tmpdir', required=False, default=None, type=str, help="temp dir for unix sort")
optional_train.add_argument('--no-st', required=False, default=False, action='store_true', help="Dont do streaming and filtering in preprocessing (short chromosome contrigs not in reference fasta are not removed)")

return required_train, optional_train

Expand Down

0 comments on commit 5d23d98

Please sign in to comment.