I try to realize a tiny function that is to read users name from **fastalist ** file and to parallely create name.txt. But the spliced filenames confused me.
As shown in the below, the first one name is '1pazA' but the output is '.txtA'. It is likely the first 3 letters are replaced. However, for the second out is right.
# cmd
cat BuildFeatures/example/fastalist | parallel -j 5 echo {}.txt
# out
.txtA
T0968s1.txt
# fastalist file content
1pazA
T0968s1
I expect to get the right spliced string.