Skip to content

Commit

Permalink
fix vcf conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
inodb committed May 5, 2020
1 parent ba1d6dc commit 5c55c7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ program
program
.command('convert')
.description('convert between different mutation formats (e.g. VCF to MAF)')
.action((inputFile, args) => {
convertVCFtoMAF(inputFile);
.action((input, args) => {
convertVCFtoMAF(args[0]);
});

program.command('annotate', 'retrieve annotations');
Expand Down

0 comments on commit 5c55c7b

Please sign in to comment.