Skip to content

Commit 9060b0c

Browse files
authored
Merge pull request #428 from /issues/422-add-ftp-as-option
Add ftp as input option (resolves #422)
2 parents 441be03 + 4c1b3db commit 9060b0c

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/toil_scripts/bwa_alignment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Run a variety of samples locally
8585
# BWA Alignment Pipeline configuration file
8686
# This configuration file is formatted in YAML. Simply write the value (at least one space) after the colon.
8787
# Edit the values in this configuration file and then rerun the pipeline: "toil-bwa run"
88-
# URLs can take the form: http://, file://, s3://, gnos://.
88+
# URLs can take the form: http://, ftp://, file://, s3://, gnos://.
8989
# Comments (beginning with #) do not need to be removed. Optional parameters may be left blank
9090
##############################################################################################################
9191
# Required: Reference fasta file

src/toil_scripts/bwa_alignment/bwa_alignment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def generate_config():
101101
# This configuration file is formatted in YAML. Simply write the value (at least one space) after the colon.
102102
# Edit the values in this configuration file and then rerun the pipeline: "toil-bwa run"
103103
#
104-
# URLs can take the form: http://, file://, s3://, gnos://
104+
# URLs can take the form: http://, ftp://, file://, s3://, gnos://
105105
# Local inputs follow the URL convention: file:///full/path/to/input
106106
# S3 URLs follow the convention: s3://bucket/directory/file.txt
107107
#

src/toil_scripts/exome_variant_pipeline/exome_variant_pipeline.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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
'\nDefault 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')

src/toil_scripts/rnaseq_cgl/rnaseq_cgl_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ def generate_config():
324324
# Edit the values in this configuration file and then rerun the pipeline: "toil-rnaseq run"
325325
# Just Kallisto or STAR/RSEM can be run by supplying only the inputs to those tools
326326
#
327-
# URLs can take the form: http://, file://, s3://, gnos://
327+
# URLs can take the form: http://, ftp://, file://, s3://, gnos://
328328
# Local inputs follow the URL convention: file:///full/path/to/input
329329
# S3 URLs follow the convention: s3://bucket/directory/file.txt
330330
#

0 commit comments

Comments
 (0)