Skip to content

Commit 9597755

Browse files
authored
Merge pull request #156 from Workflomics/update_snakemake_extension
Update snakemake extension
2 parents 560b674 + 266f9fc commit 9597755

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.workflomics</groupId>
66
<artifactId>APE</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
<packaging>jar</packaging>
99
<name>org.workflomics:APE</name>
1010
<description>APE is a command line tool and an API for the automated exploration of possible computational pipelines (workflows) from large collections of computational tools.</description>

src/main/java/nl/uu/cs/ape/APE.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -728,12 +728,12 @@ public static boolean writeSnakemakeWorkflows(SolutionsList allSolutions, boolea
728728
APEUtils.timerStart(timerID, true);
729729

730730
/* Removing the existing files from the file system. */
731-
prepareOutputDirectory(snakemakeFolder, "snakefile");
731+
prepareOutputDirectory(snakemakeFolder, "smk");
732732
log.debug("Generating Snakemake files.");
733733

734734
allSolutions.getParallelStream().filter(solution -> solution.getIndex() < noSnakemakeFiles).forEach(solution -> {
735735
try {
736-
String titleSnakefile = solution.getFileName() + "_snakefile";
736+
String titleSnakefile = solution.getFileName() + ".smk";
737737
File script = snakemakeFolder.resolve(titleSnakefile).toFile();
738738

739739
if (createPartialImplementations) {

0 commit comments

Comments
 (0)