Skip to content

Commit 3570002

Browse files
authored
Merge pull request #584 from chinwobble/fix
fix incremental build
2 parents 4f273f1 + 6434859 commit 3570002

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

Makefile

+2-7
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ ${BIN_TARGET}:${OBJ}
2828
static:${OBJ}
2929
$(CXX) $(OBJ) -o ${BIN_TARGET} $(STATIC_LD_FLAGS)
3030

31-
${DIR_OBJ}/%.o:${DIR_SRC}/%.cpp make_obj_dir
31+
${DIR_OBJ}/%.o:${DIR_SRC}/%.cpp
32+
@mkdir -p $(@D)
3233
$(CXX) -c $< -o $@ $(CXXFLAGS)
3334

3435
.PHONY:clean
@@ -43,12 +44,6 @@ clean:
4344
rm $(TARGET) ; \
4445
fi
4546

46-
make_obj_dir:
47-
@if test ! -d $(DIR_OBJ) ; \
48-
then \
49-
mkdir $(DIR_OBJ) ; \
50-
fi
51-
5247
install:
5348
install $(TARGET) $(BINDIR)/$(TARGET)
5449
@echo "Installed."

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ means that 150bp are from read1, and 15bp are from read2. `fastp` prefers the ba
357357
Same as the [base correction feature](#base-correction-for-pe-data), this function is also based on overlapping detection, which has adjustable parameters `overlap_len_require (default 30)`, `overlap_diff_limit (default 5)` and `overlap_diff_percent_limit (default 20%)`. Please note that the reads should meet these three conditions simultaneously.
358358

359359
# duplication rate and deduplication
360-
For both SE and PE data, fastp supports evaluating its duplication rate and removing duplicated reads/pairs. fastp considers one read as duplicated only if its all base pairs are identical as another one. This meas if there is a sequencing error or an N base, the read will not be treated as duplicated.
360+
For both SE and PE data, fastp supports evaluating its duplication rate and removing duplicated reads/pairs. fastp considers one read as duplicated only if its all base pairs are identical as another one. This means if there is a sequencing error or an N base, the read will not be treated as duplicated.
361361

362362
## duplication rate evaluation
363363
By default, fastp evaluates duplication rate, and this module may use 1G memory and take 10% ~ 20% more running time. If you don't need the duplication rate information, you can set `--dont_eval_duplication` to disable the duplication evaluation. But please be noted that, if deduplication (`--dedup`) option is enabled, then `--dont_eval_duplication` option is ignored.

src/peprocessor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ void PairEndProcessor::recycleToPool2(int tid, Read* r) {
360360
bool PairEndProcessor::processPairEnd(ReadPack* leftPack, ReadPack* rightPack, ThreadConfig* config){
361361
if(leftPack->count != rightPack->count) {
362362
cerr << endl;
363-
cerr << "WARNNIG: different read numbers of the " << mPackProcessedCounter << " pack" << endl;
363+
cerr << "WARNING: different read numbers of the " << mPackProcessedCounter << " pack" << endl;
364364
cerr << "Read1 pack size: " << leftPack->count << endl;
365365
cerr << "Read2 pack size: " << rightPack->count << endl;
366366
cerr << endl;

0 commit comments

Comments
 (0)