Skip to content

Commit

Permalink
Disable metaphlan table join
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Minot committed Apr 27, 2020
1 parent 4079520 commit f724e07
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -341,12 +341,12 @@ workflow {
r -> [r[0], r[1], r[2]]
}
)
// Make a single table with all of the metaPhlAn2 results
join_metaphlan2(
metaphlan2_fastq.out.map {
r -> r[1]
}.toSortedList()
)
// // Make a single table with all of the metaPhlAn2 results
// join_metaphlan2(
// metaphlan2_fastq.out.map {
// r -> r[1]
// }.toSortedList()
// )
}

// ###################################
Expand Down Expand Up @@ -443,15 +443,15 @@ workflow {
detailedHDF = addGeneAssembly.out[1]
}

// If we performed compositional analysis, add the results ot the HDF5
if (params.composition) {
addMetaPhlAn2Results(
resultsHDF,
join_metaphlan2.out
)
// // If we performed compositional analysis, add the results ot the HDF5
// if (params.composition) {
// addMetaPhlAn2Results(
// resultsHDF,
// join_metaphlan2.out
// )

resultsHDF = addMetaPhlAn2Results.out
}
// resultsHDF = addMetaPhlAn2Results.out
// }

// If we performed statistical analysis, add the results to the HDF5
if ( params.formula ) {
Expand Down

0 comments on commit f724e07

Please sign in to comment.