Skip to content

Commit

Permalink
rename workpackage2 to goldrush-path
Browse files Browse the repository at this point in the history
  • Loading branch information
jwcodee committed May 20, 2022
1 parent 1d6161c commit 1ffe000
Show file tree
Hide file tree
Showing 24 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bin/goldrush
Original file line number Diff line number Diff line change
Expand Up @@ -178,14 +178,14 @@ wp2-tigmint-ntLink: ntLink1 $(ntlink_targets) ntLink_softlink
workpackage2: $(p2)_golden_path_1.fq

$(p2)_golden_path_1.fq: $(p1)_golden_path_all.fq
$(time) workpackage2 -k $(k) -w $(w) -t $(tile) -u $(u) -a $(a) -l $(l) -o $(o) -p $(p2) -i $(p1)_golden_path_all.fq -h $(h) -j $(j) -P $(P) -x$(x) -s $(s) -m 0
$(time) goldrush-path -k $(k) -w $(w) -t $(tile) -u $(u) -a $(a) -l $(l) -o $(o) -p $(p2) -i $(p1)_golden_path_all.fq -h $(h) -j $(j) -P $(P) -x$(x) -s $(s) -m 0
echo "Done WP2! Golden path can be found in: $@"

$(p1)_golden_path_all.fq: $(p1)_golden_path_$(M).fq
cat $(p1)_golden_path_*.fq > $(p1)_golden_path_all.fq

$(p1)_golden_path_$(M).fq: $(long_reads)
$(time) workpackage2 -k $(k) -w $(w) -t $(tile) -u $(u) -a $(a) -l $(l) -o $(o) -p $(p1) -i $(long_reads) -h $(h) -j $(j) -x$(x) -P $(P) -s $(s) -T $(T) -r $(r) --new_temp_mode -M $(M) -m $(m)
$(time) goldrush-path -k $(k) -w $(w) -t $(tile) -u $(u) -a $(a) -l $(l) -o $(o) -p $(p1) -i $(long_reads) -h $(h) -j $(j) -x$(x) -P $(P) -s $(s) -T $(T) -r $(r) --new_temp_mode -M $(M) -m $(m)


# Run racon
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions workpackage2/meson.build → goldrush_path/meson.build
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
src_files = [ 'workpackage2.cpp', 'Options.cpp', 'read_hashing.cpp', 'opt.cpp', 'spaced_seeds.cpp', 'calc_phred_average.cpp' ]
src_files = [ 'goldrush_path.cpp', 'Options.cpp', 'read_hashing.cpp', 'opt.cpp', 'spaced_seeds.cpp', 'calc_phred_average.cpp' ]
deps = [ btllib_dep, threads_dep, openmp_dep, tcmalloc_dep, divsufsort_dep, divsufsort64_dep, sdsl_dep ]
inc_dirs = [ 'Common' ]
link_args = [ '-ltcmalloc', '-lsdsl', '-ldivsufsort', '-ldivsufsort64' ]

executable('workpackage2',
executable('goldrush-path',
src_files,
dependencies : deps,
include_directories : inc_dirs,
link_args : link_args,
install : true
)
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ divsufsort_dep = compiler.find_library('divsufsort')
divsufsort64_dep = compiler.find_library('divsufsort64')
sdsl_dep = compiler.find_library('sdsl')

subdir('workpackage2')
subdir('goldrush_path')

rootpath = meson.source_root()

clang_format = find_program('clang-format', required : false)
if clang_format.found()
run_target('format', command: join_paths(rootpath, 'scripts/format'))
endif
endif

0 comments on commit 1ffe000

Please sign in to comment.