Allow two digit numbers

This commit is contained in:
Thomas A. Christensen II 2021-04-08 08:37:18 -06:00
parent 33cce553f5
commit 4565960330
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -47,7 +47,7 @@ for fastq in fastqs
end
# Swap the column and row
well_num = string(last(id_row.WellNum[1],1), first(id_row.WellNum[1],1))
well_num = string(last(id_row.WellNum[1],2), first(id_row.WellNum[1],1))
# Construct the new filename
fastq_newname = string(well_num, "_", fastq)