Skip to content

Commit

Permalink
download: fix download fix configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
imedina committed Dec 27, 2023
1 parent 8ce81c6 commit 79726a0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ public GenomeDownloadManager(String species, String assembly, Path targetDirecto
public List<DownloadFile> download() throws IOException, InterruptedException {
List<DownloadFile> downloadFiles = new ArrayList<>();
downloadFiles.addAll(downloadReferenceGenome());
// downloadFiles.addAll(downloadConservation());
// downloadFiles.addAll(downloadRepeats());
downloadFiles.addAll(downloadConservation());
downloadFiles.addAll(downloadRepeats());

// cytobands
runGenomeInfo();
// runGenomeInfo();
return downloadFiles;
}

Expand Down

0 comments on commit 79726a0

Please sign in to comment.