@@ -227,7 +227,7 @@ def generate_config():
227227 # This configuration file is formatted in YAML. Simply write the value (at least one space) after the colon.
228228 # Edit the values in this configuration file and then rerun the pipeline: "toil-variant run"
229229 #
230- # URLs can take the form: http://, file://, s3://, gnos://
230+ # URLs can take the form: http://, ftp://, file://, s3://, gnos://
231231 # Local inputs follow the URL convention: file:///full/path/to/input
232232 # S3 URLs follow the convention: s3://bucket/directory/file.txt
233233 #
@@ -281,8 +281,8 @@ def generate_manifest():
281281 # There are 3 tab-separated columns: UUID, Normal BAM URL, Tumor BAM URL
282282 #
283283 # UUID This should be a unique identifier for the sample to be processed
284- # Normal URL A URL (http://, file://, s3://, gnos://) pointing to the normal bam
285- # Tumor URL A URL (http://, file://, s3://, gnos://) pointing to the tumor bam
284+ # Normal URL A URL (http://, ftp://, file://, s3://, gnos://) pointing to the normal bam
285+ # Tumor URL A URL (http://, ftp://, file://, s3://, gnos://) pointing to the tumor bam
286286 #
287287 # Examples of several combinations are provided below. Lines beginning with # are ignored.
288288 #
@@ -371,10 +371,10 @@ def main():
371371 help = 'Path to the (filled in) manifest file, generated with "generate-manifest". '
372372 '\n Default value: "%(default)s"' )
373373 parser_run .add_argument ('--normal' , default = None , type = str ,
374- help = 'URL for the normal BAM. URLs can take the form: http://, file://, s3://, '
374+ help = 'URL for the normal BAM. URLs can take the form: http://, ftp://, file://, s3://, '
375375 'and gnos://. The UUID for the sample must be given with the "--uuid" flag.' )
376376 parser_run .add_argument ('--tumor' , default = None , type = str ,
377- help = 'URL for the tumor BAM. URLs can take the form: http://, file://, s3://, '
377+ help = 'URL for the tumor BAM. URLs can take the form: http://, ftp://, file://, s3://, '
378378 'and gnos://. The UUID for the sample must be given with the "--uuid" flag.' )
379379 parser_run .add_argument ('--uuid' , default = None , type = str , help = 'Provide the UUID of a sample when using the'
380380 '"--tumor" and "--normal" option' )
0 commit comments