Extend description of boolean variables
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
Filter activity
- Resolved by Mikhail Karnevskiy
90 90 runs = [820,] # runs to use, required, range allowed 91 91 sequences = [0,1,2,3,4] # sequences files to use, range allowed 92 92 cluster_profile = "noDB" # The ipcluster profile to use 93 local_output = True # output constants locally 93 local_output = False # output constants locally 94 94 95 Here, `in_folder` and `out_folder` are required string values. Values for required parameters have to be given when executing from the command line. This means that any defaults given in the first cell of the code are ignored (they are only used to derive the type of the parameter). `Modules` is a list, which from the command line could also be assigned using a range expression, e.g. `5-10,12,13,18-21`, which would translate to `5,6,7,8,9,12,13,18,19,20`. It is also a required parameter. The parameter `local_output` is a Boolean. 95 Here, `in_folder` and `out_folder` are required string values. Values for required parameters have to be given when executing from the command line. This means that any defaults given in the first cell of the code are ignored (they are only used to derive the type of the parameter). `Modules` is a list, which from the command line could also be assigned using a range expression, e.g. `5-10,12,13,18-21`, which would translate to `5,6,7,8,9,12,13,18,19,20`. It is also a required parameter. The parameter `local_output` is a Boolean. The corresponding argument given in the command line will change this parameter from `false` to `True`. There is not a way to change this parameter from `True` to `False` from the command line. changed this line in version 3 of the diff
mentioned in commit d5c18880
Please register or sign in to reply