Hi, I noticed a likely bug in the most recent ricopili (2019_Jun_25.001). The my.wget script calls wget with a flag that used to be -nv (for --no-verbose), but now is just -n. Since there is no -n option in wget, it gets joined with the first letter of the URL, which was 'h' for me, into -nh. Since wget knows no -nh option either, it then stops.
|
my $sc =system ("wget -n $ftp_name/$vcf_name"); |
Hi, I noticed a likely bug in the most recent ricopili (2019_Jun_25.001). The my.wget script calls wget with a flag that used to be -nv (for --no-verbose), but now is just -n. Since there is no -n option in wget, it gets joined with the first letter of the URL, which was 'h' for me, into -nh. Since wget knows no -nh option either, it then stops.
ricopili/rp_bin/my.wget
Line 18 in 757fb9d