Well, there are times one has to download chromosome information for organisms. It could be any thing including sequences, annotations, other meta information. Chromosome names in general are mix of both numbers and string/text. For humans, it would be from chromosome 1 and chromosome 22, chromosome X, chromosome Y and mitochondrial chromosome. So one cannot use expansion in bash (shell). Parallel allows user download all the chromosomes, with both integers and strings/text. First let us echo chromosome names with parallel, then we can use the same in downloading multiple chromosomal information with chromosomes numbered and with text. 

Let us echo all the chromosomes in human with parallel:
===============================
$ parallel --dry-run  {} ::: chr{1..22} chr{X..Y}
chr1
chr2
chr3
chr4
chr5
chr6
chr7
chr8
chr9
chr10
chr11
chr12
chr13
chr14
chr15
chr16
chr17
chr18
chr19
chr20
chr21
chr22
chrX
chrY
==========================
Now we would use the same trick in download all .agp files for all chromosomes. URL for agp files  is:  ftp://ftp.ncbi.nlm.nih.gov/genomes/Homo_sapiens/Assembled_chromosomes/agp
=======================================
$ parallel --dry-run 'wget ftp://ftp.ncbi.nlm.nih.gov/genomes/Homo_sapiens/Assembled_chromosomes/agp/hs_ref_GRCh38.p12_{}.agp.gz' ::: chr{1..22} chr{X..Y}
========================================
 Now this would download all chromosome agp files including x and y.