Skip to content

Commit

Permalink
Merge pull request #54 from nf-core/casslitch-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
casslitch authored Jun 6, 2024
2 parents c9fa9de + d0a920f commit b5c1daf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/local/svprep/assemble/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ process GRIDSS_ASSEMBLE {
done
# Symlink indices next to assembly FASTA
ln -s \$(find -L ${genome_gridss_index} -type f) ./
ln -s \$(find -L ${genome_gridss_index} -regex '.*\\.\\(amb\\|ann\\|pac\\|gridsscache\\|sa\\|bwt\\|img\\|alt\\)') ./
# Run
gridss_svprep \\
Expand Down
2 changes: 1 addition & 1 deletion modules/local/svprep/call/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ process GRIDSS_CALL {
shadow_input_directory ${assemble_dir}
# Symlink indices next to assembly FASTA
ln -s \$(find -L ${genome_gridss_index} -type f) ./
ln -s \$(find -L ${genome_gridss_index} -regex '.*\\.\\(amb\\|ann\\|pac\\|gridsscache\\|sa\\|bwt\\|img\\|alt\\)') ./
# Run
gridss_svprep \\
Expand Down
2 changes: 1 addition & 1 deletion modules/local/svprep/preprocess/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ process GRIDSS_PREPROCESS {

"""
# Symlink indices next to assembly FASTA
ln -s \$(find -L ${genome_gridss_index} -type f) ./
ln -s \$(find -L ${genome_gridss_index} -regex '.*\\.\\(amb\\|ann\\|pac\\|gridsscache\\|sa\\|bwt\\|img\\|alt\\)') ./
gridss_svprep \\
${args} \\
Expand Down
2 changes: 1 addition & 1 deletion modules/local/virusbreakend/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ process VIRUSBREAKEND {

"""
# Symlink indices next to assembly FASTA
ln -s \$(find -L ${genome_gridss_index} -type f) ./
ln -s \$(find -L ${genome_gridss_index} -regex '.*\\.\\(amb\\|ann\\|pac\\|gridsscache\\|sa\\|bwt\\|img\\|alt\\)') ./
virusbreakend \\
${args} \\
Expand Down

0 comments on commit b5c1daf

Please sign in to comment.