mirror of
https://github.com/MillironX/sc2-sequencing.git
synced 2024-12-22 03:08:17 +00:00
Allow two digit numbers
This commit is contained in:
parent
33cce553f5
commit
4565960330
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue