Skip to content

Commit

Permalink
No point creating the Miscellaneous directory if we’re not going to u…
Browse files Browse the repository at this point in the history
…se it.
  • Loading branch information
MONEY Daniel authored and MONEY Daniel committed Mar 22, 2018
1 parent cb22c2e commit 49c0edc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/InputOutput.f90
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,9 @@ subroutine MakeDirectories(params)
call system(MD // trim(params%outputDirectory)//DASH//trim(params%resultFolderPath) // DASH // "PhasingResults")
call system(MD // trim(params%outputDirectory)//DASH//trim(params%resultFolderPath) // DASH //"PhasingResults"//DASH//"HaplotypeLibrary")
if (params%outputHapCommonality) call system(MD // trim(params%outputDirectory)//DASH//trim(params%resultFolderPath) // DASH //"PhasingResults"//DASH//"HaplotypeLibrary"//DASH//"Extras")
call system(MD // trim(params%outputDirectory)//DASH//trim(params%resultFolderPath) // DASH //"Miscellaneous")
if (params%outputSurrogates .or. params%outputSurrogatesSummary) then
call system(MD // trim(params%outputDirectory)//DASH//trim(params%resultFolderPath) // DASH //"Miscellaneous")
end if

if (params%outputIndivMistakes .or. params%outputIndivMistakesPercent .or. params%outputCoreMistakesPercent) then
call system(MD // trim(params%outputDirectory)//DASH//trim(params%resultFolderPath) // DASH //"Simulation")
Expand Down

0 comments on commit 49c0edc

Please sign in to comment.