Skip to content

Commit

Permalink
Fix for merge script'
Browse files Browse the repository at this point in the history
  • Loading branch information
spficklin committed Jul 13, 2024
1 parent 78dc55b commit 9578e9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/merge_fastq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if [ ${#files_1[@]} -gt 1 ] ; then

elif [ ${#files_1[@]} -eq 1 ] ; then

ln ${files_1[0]} ${sample_id}_1.fastq
cp ${files_1[0]} ${sample_id}_1.fastq

fi

Expand All @@ -29,6 +29,6 @@ if [ ${#files_2[@]} -gt 1 ] ; then

elif [ ${#files_2[@]} -eq 1 ] ; then

ln ${files_2[0]} ${sample_id}_2.fastq
cp ${files_2[0]} ${sample_id}_2.fastq
fi

0 comments on commit 9578e9f

Please sign in to comment.