Skip to content

Commit

Permalink
Cleaning a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
toniher committed Oct 10, 2024
1 parent 584a30f commit fbe8817
Showing 1 changed file with 0 additions and 38 deletions.
38 changes: 0 additions & 38 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -171,44 +171,6 @@ workflow {

}

// if (params.extraexons) {
// process generate_annotations_with_extra_exons {
// tag { genomeid }
// label 'big_cpus'
// publishDir "${params.output}/", mode: 'copy'
//
// input:
// set genomeid, file(genome), file(annotation), file(extraexons) from data_to_annotation
//
// output:
// set val(genomeid), file (genomeid) into idfolders
//
// script:
// def extrapars = ""
// if (extraexons.size()>0) { extrapars = " -add_exons ${extraexons}" }
// """
// A1_generate_annotations.pl -GTF ${annotation} -G ${genome} -sp ${genomeid} ${extrapars}
// """
// }
// } else {
// process generate_annotations {
// tag { genomeid }
// publishDir "${params.output}/", mode: 'copy'
//
// input:
// set genomeid, file(genome), file(annotation) from data_to_annotation
//
// output:
// set val(genomeid), file (genomeid) into idfolders
//
// script:
// """
// A1_generate_annotations.pl -GTF ${annotation} -G ${genome} -sp ${genomeid}
// """
// }
// }


//
//
// /*
Expand Down

0 comments on commit fbe8817

Please sign in to comment.