Skip to content

Commit

Permalink
correct conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
David Jones committed Mar 19, 2019
2 parents 2638e31 + f284e70 commit a0a95ce
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

* Making species and assembly required commandline arguments in the estep

## 1.13.13

* Add AMPLICON and TARGETED to accepted protocol list. Change RNA-seq, but also keep RNA.
* https://www.ebi.ac.uk/ena/submit/reads-library-strategy

## 1.13.12

* Correct bad malloc on sscanf.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CAVEMAN_VERSION=1.13.12
CAVEMAN_VERSION=1.13.13

TEST_REF?=""
#Compiler
Expand Down
6 changes: 3 additions & 3 deletions src/estep.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ static char *tum_prot = "WGS";
static int max_copy_number = 10;
static uint32_t default_zbuffer = 1024*1024;
static char *contig_str = "##contig=<ID=,length=,assembly=,species=>\n";
char *valid_protocols[3] = {"WGS","WXS","RNA"};
char *valid_protocols[3] = {"WGS","WXS","RNA","RNA-Seq","AMPLICON","TARGETED"};

void estep_print_usage (int exit_code){
printf ("Usage: caveman estep -i jobindex [-f file] [-m int] [-k float] [-b float] [-p float] [-q float] [-x int] [-y int] [-c float] [-d float] [-a int]\n\n");
Expand All @@ -115,8 +115,8 @@ void estep_print_usage (int exit_code){
printf("-o --prob-file [file] File location of the prob array. [default:'%s']\n",probs_file);
printf("-n --normal-copy-number [int] Copy number to use when filling gaps in the normal copy number file [default:%d].\n",normal_copy_number);
printf("-t --tumour-copy-number [int] Copy number to use when filling gaps in the tumour copy number file [default:%d].\n",tumour_copy_number);
printf("-l --normal-protocol [string] Normal protocol. Ideally this should match -r but not checked (WGS|WXS|RNA) [default:%s].\n",norm_prot);
printf("-r --tumour-protocol [string] Tumour protocol. Ideally this should match -l but not checked (WGS|WXS|RNA) [default:%s].\n",tum_prot);
printf("-l --normal-protocol [string] Normal protocol. Ideally this should match -r but not checked (WGS|WXS|RNA|RNA-Seq|AMPLICON|TARGETED) [default:%s].\n",norm_prot);
printf("-r --tumour-protocol [string] Tumour protocol. Ideally this should match -l but not checked (WGS|WXS|RNA|RNA-Seq|AMPLICON|TARGETED) [default:%s].\n",tum_prot);
printf("-P --normal-platform [string] Normal platform. Overrides the values retrieved from bam header.\n");
printf("-T --tumour-platform [string] Tumour platform. Overrides the values retrieved from bam header.\n");
printf("-M --max-copy-number [int] Maximum copy number permitted. If exceeded the copy number for the offending region will be set to this value. [default:%d].\n",max_copy_number);
Expand Down

0 comments on commit a0a95ce

Please sign in to comment.