Skip to content

Commit

Permalink
removed ftp url
Browse files Browse the repository at this point in the history
  • Loading branch information
ens-ftricomi committed Aug 15, 2024
1 parent 3166828 commit 2434b2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ process DOWNLOAD_PAIRED_FASTQS {

while (!md5Match && retryCount < maxRetries) {
"""
wget -qq -c -O ${pair1Path} ftp://${url1}
wget -qq -c -O ${pair1Path} ${url1}
""".execute().waitFor()

"""
wget -qq -c -O ${pair2Path} ftp://${url2}
wget -qq -c -O ${pair2Path} ${url2}
""".execute().waitFor()

// Calculate MD5 checksums of downloaded files
Expand Down

0 comments on commit 2434b2c

Please sign in to comment.