Skip to content

Commit

Permalink
set version to v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfchen committed Mar 19, 2017
1 parent eed4292 commit 4eb63b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ A standard VCF can be used as a mutation file, with file extension `.vcf` or `.V
```shell
mutscan -1 R1.fq -2 R2.fq -m target.vcf -r hg19.fa -h report.html
```
* if the VCF file is smaller than 100 records, all records can be scanned
* if the VCF file has more than 100 records, you should add `--mark` in the command line, and then mark the wanted records with the `FILTER` column marked `M`. For example (note the M in the FILTER column):
* if the VCF file has too many records, you will get a very big HTML file if you scan all the variants. You can add `--mark` in the command line, and then mark the wanted records with the `FILTER` column marked `M`. For example (note the M in the FILTER column):
```
#CHROM POS ID REF ALT QUAL FILTER INFO
1 69224 COSM3677745 A C . M This record will be scanned
Expand Down
2 changes: 1 addition & 1 deletion src/common.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef COMMON_H
#define COMMON_H

#define MUTSCAN_VER "1.8.0"
#define MUTSCAN_VER "1.9.0"

typedef long int64;
typedef unsigned long uint64;
Expand Down
2 changes: 1 addition & 1 deletion src/mutation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ vector<Mutation> Mutation::parseVcf(string vcfFile, string refFile) {
mutations.push_back(mut);
}
if(mutations.size() <= 0){
cerr<<"No mutation will be scanned"<<endl;
cerr<<"No mutation to be scanned"<<endl;
if(markedOnly){
cerr<<"You are using --mark option, you should mark the wanted VCF records with FILTER as M"<<endl;
cerr<<"Example (note the M in the FILTER column):"<<endl;
Expand Down

0 comments on commit 4eb63b7

Please sign in to comment.