Skip to content

Commit e25486b

Browse files
Merge pull request #454 from pangenome/update_defaul_g
Two rounds of smoothing by default
2 parents cfcfba4 + 5eff5ec commit e25486b

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ RUN git clone --recursive https://github.com/ekg/seqwish \
7777
RUN git clone --recursive https://github.com/pangenome/smoothxg \
7878
&& cd smoothxg \
7979
&& git pull \
80-
&& git checkout 1182e148de177e7878c7407633332df235a1e90a \
80+
&& git checkout 6a2193db950acd6b2d77c265d6e1faa66944238e \
8181
&& git submodule update --init --recursive \
8282
&& sed -i 's/-msse4.1/-march=sandybridge -Ofast/g' deps/spoa/CMakeLists.txt \
8383
&& sed -i 's/-march=native/-march=sandybridge -Ofast/g' deps/spoa/CMakeLists.txt \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ pggb -i output/in.fa.dd9e519.community.0.fa \
7373
-o output/in.fa.dd9e519.community.0.fa.out \
7474
-p 5k -l 25000 -p 90 -n 9 -K 19 -F 0.001 \
7575
-k 19 -f 0 -B 10000000 \
76-
-H 9 -j 0 -e 0 -G 700,900,1100 -P 1,19,39,3,81,1 -O 0.001 -d 100 -Q Consensus_ \
76+
-H 9 -j 0 -e 0 -G 700,1100 -P 1,19,39,3,81,1 -O 0.001 -d 100 -Q Consensus_ \
7777
-V ref:1000 --threads 16 --poa-threads 16
7878
pggb -i output/in.fa.dd9e519.community.1.fa \
7979
-o output/in.fa.dd9e519.community.1.fa.out \
8080
-p 5k -l 25000 -p 90 -n 9 -K 19 -F 0.001 \
8181
-k 19 -f 0 -B 10000000 \
82-
-H 9 -j 0 -e 0 -G 700,900,1100 -P 1,19,39,3,81,1 -O 0.001 -d 100 -Q Consensus_ \
82+
-H 9 -j 0 -e 0 -G 700,1100 -P 1,19,39,3,81,1 -O 0.001 -d 100 -Q Consensus_ \
8383
-V ref:1000 --threads 16 --poa-threads 16
8484
```
8585

docs/rst/quick_start.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ This generates the command lines to run ``pggb`` on each community (2 in this ex
7878
-o output/in.fa.dd9e519.community.0.fa.out \
7979
-p 5k -l 25000 -p 90 -n 9 -K 19 -F 0.001 \
8080
-k 19 -f 0 -B 10000000 \
81-
-H 9 -j 0 -e 0 -G 700,900,1100 -P 1,19,39,3,81,1 -O 0.001 -d 100 -Q Consensus_ \
81+
-H 9 -j 0 -e 0 -G 700,1100 -P 1,19,39,3,81,1 -O 0.001 -d 100 -Q Consensus_ \
8282
-V ref:1000 --threads 16 --poa-threads 16
8383
pggb -i output/in.fa.dd9e519.community.1.fa \
8484
-o output/in.fa.dd9e519.community.1.fa.out \
8585
-p 5k -l 25000 -p 90 -n 9 -K 19 -F 0.001 \
8686
-k 19 -f 0 -B 10000000 \
87-
-H 9 -j 0 -e 0 -G 700,900,1100 -P 1,19,39,3,81,1 -O 0.001 -d 100 -Q Consensus_ \
87+
-H 9 -j 0 -e 0 -G 700,1100 -P 1,19,39,3,81,1 -O 0.001 -d 100 -Q Consensus_ \
8888
-V ref:1000 --threads 16 --poa-threads 16
8989
9090

partition-before-pggb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ transclose_batch=$TRANSCLOSE_BATCH
3636
# smoothxg's default values
3737
MAX_PATH_JUMP=0
3838
MAX_EDGE_JUMP=0
39-
TARGET_POA_LENGTH=700,900,1100
39+
TARGET_POA_LENGTH=700,1100
4040
POA_PADDING=0.001
4141
PAD_MAX_DEPTH=100
4242
CONSENSUS_PREFIX=Consensus_

pggb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ transclose_batch=$TRANSCLOSE_BATCH
3636
# smoothxg's default values
3737
MAX_PATH_JUMP=0
3838
MAX_EDGE_JUMP=0
39-
TARGET_POA_LENGTH=700,900,1100
39+
TARGET_POA_LENGTH=700,1100
4040
POA_PADDING=0.001
4141
PAD_MAX_DEPTH=100
4242
CONSENSUS_PREFIX=Consensus_

0 commit comments

Comments
 (0)