Skip to content

Commit

Permalink
mpileup: fix error message typo
Browse files Browse the repository at this point in the history
resolves #571
  • Loading branch information
mcshane committed Mar 13, 2017
1 parent 7d8e377 commit ae49e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpileup.c
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,7 @@ int bam_mpileup(int argc, char *argv[])
return 1;
}
if (!mplp.fai && !noref) {
fprintf(stderr,"Error: mpileup requires the --reference option by default; use --no-reference to run without a fasta reference\n");
fprintf(stderr,"Error: mpileup requires the --fasta-ref option by default; use --no-reference to run without a fasta reference\n");
return 1;
}
int ret,i;
Expand Down

0 comments on commit ae49e09

Please sign in to comment.