Skip to content

Commit

Permalink
nf-core doesn't like the whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
muffato committed Jul 15, 2024
1 parent 01a1b26 commit 68b369b
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion modules/local/extract_repeat.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process EXTRACT_REPEAT {
'biocontainers/perl:5.26.2' }"

input:
tuple val( meta ), path( file )
tuple val(meta), path(file)

output:
tuple val( meta ), path( "*.bed" ) , emit: bed
Expand Down
2 changes: 1 addition & 1 deletion modules/local/extract_telo.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process EXTRACT_TELO {
'docker.io/ubuntu:20.04' }"

input:
tuple val( meta ), path( file )
tuple val(meta), path(file)

output:
tuple val( meta ), file( "*bed" ) , emit: bed
Expand Down
2 changes: 1 addition & 1 deletion modules/local/find_telomere_regions.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ process FIND_TELOMERE_REGIONS {
}

input:
tuple val( meta ), path( file )
tuple val(meta), path(file)
val (telomereseq)

output:
Expand Down
2 changes: 1 addition & 1 deletion modules/local/find_telomere_windows.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ process FIND_TELOMERE_WINDOWS {
'biocontainers/java-jdk:8.0.112--1' }"

input:
tuple val( meta ), path( file )
tuple val(meta), path(file)

output:
tuple val( meta ), file( "*.windows" ) , emit: windows
Expand Down
2 changes: 1 addition & 1 deletion modules/local/gap_length.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process GAP_LENGTH {
'docker.io/ubuntu:20.04' }"

input:
tuple val( meta ), path( file )
tuple val(meta), path(file)

output:
tuple val( meta ), file( "*bedgraph" ) , emit: bed
Expand Down
2 changes: 1 addition & 1 deletion modules/local/generate_genome_file.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process GENERATE_GENOME_FILE {
'docker.io/ubuntu:20.04' }"

input:
tuple val( meta ), path( fai )
tuple val(meta), path(fai)

output:
tuple val( meta ), file( "my.genome" ) , emit: dotgenome
Expand Down
2 changes: 1 addition & 1 deletion modules/local/get_largest_scaff.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ process GET_LARGEST_SCAFF {
'docker.io/ubuntu:20.04' }"

input:
tuple val( meta ), path( file )
tuple val(meta), path(file)

output:
env largest_scaff , emit: scaff_size
Expand Down
2 changes: 1 addition & 1 deletion modules/local/reformat_intersect.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process REFORMAT_INTERSECT {
'docker.io/ubuntu:20.04' }"

input:
tuple val( meta ), path( file )
tuple val(meta), path(file)

output:
tuple val( meta ), file( "*.bed" ), emit: bed
Expand Down
2 changes: 1 addition & 1 deletion modules/local/rename_ids.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process RENAME_IDS {
'docker.io/ubuntu:20.04' }"

input:
tuple val( meta ), path( file )
tuple val(meta), path(file)

output:
tuple val( meta ), file( "*bed" ) , emit: bed
Expand Down
2 changes: 1 addition & 1 deletion modules/local/replace_dots.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process REPLACE_DOTS {
'docker.io/ubuntu:20.04' }"

input:
tuple val( meta ), path( file )
tuple val(meta), path(file)

output:
tuple val( meta ), file( "*bed" ), emit: bed
Expand Down

0 comments on commit 68b369b

Please sign in to comment.