Skip to content

Commit

Permalink
update README layout; release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarzisi committed Oct 17, 2017
1 parent 9576e09 commit c3d08f5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ Due to its pure local-assembly strategy, Lancet currently has longer runtimes co
```
$NUMBER_OF_AUTOSOMES=22
for chrom in `seq 1 $NUMBER_OF_AUTOSOMES` X Y; do
qsub
qsub \
-N lancet_chr${chrom} \
-cwd \
-pe smp 8 \
-q dev.q \
-j y \
-b y \
-cwd \
-pe smp 8 \
-q dev.q \
-j y \
-b y \
"lancet --tumor T.bam --normal N.bam --ref ref.fa --reg $chrom --num-threads 8 > ${chrom}.vcf"
// merge VCF files
Expand Down Expand Up @@ -142,7 +142,7 @@ The final graph (after compression) containing one single variant is depicted be
_____|\__,_|_| _|\___|\___|\__|
Program: lancet (micro-assembly somatic variant caller)
Version: 1.0.0 (beta), September 18 2016
Version: 1.0.2 (beta), Ocotber 17 2017
Contact: Giuseppe Narzisi <[email protected]>
Usage: lancet [options] --tumor <BAM file> --normal <BAM file> --ref <FASTA file> --reg <chr:start-end>
Expand All @@ -157,7 +157,7 @@ Required
Optional
--min-k, k <int> : min kmersize [default: 11]
--max-k, -K <int> : max kmersize [default: 100]
--max-k, -K <int> : max kmersize [default: 101]
--trim-lowqual, -q <int> : trim bases below qv at 5' and 3' [default: 10]
--min-base-qual, -C <int> : minimum base quality required to consider a base for SNV calling [default: 17]
--quality-range, -Q <char> : quality value range [default: !]
Expand Down
2 changes: 1 addition & 1 deletion src/Lancet.hh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#include "Microassembler.hh"

string VERSION = "1.0.1 (beta), September 30 2017";
string VERSION = "1.0.2 (beta), Ocotber 17 2017";

/**** configuration parameters ****/
int NUM_THREADS = 1;
Expand Down

0 comments on commit c3d08f5

Please sign in to comment.