-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
correct issue with --help and reorganize things
- Loading branch information
Showing
10 changed files
with
22 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,6 @@ | |
work | ||
.nextflow | ||
.nextflow.* | ||
tests/resources/output* | ||
tests/resources/input_files* | ||
venv | ||
__pycache__ | ||
output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env bash | ||
vcf=$1 | ||
|
||
# keeps only the passed variants | ||
bcftools view --apply-filters PASS -o `basename $vcf .vcf`.passed.vcf $vcf | ||
#!/usr/bin/env bash | ||
vcf=$1 | ||
|
||
# keeps only the passed variants | ||
bcftools view --apply-filters PASS -o `basename $vcf .vcf`.passed.vcf $vcf |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env bash | ||
vcf=$1 | ||
|
||
module load anaconda/3/2019 | ||
|
||
bcftools summary $vcf > `basename $vcf .vcf`.stats | ||
plot-vcfstats -p `basename $vcf .vcf`.stats_plots `basename $vcf .vcf`.stats | ||
#!/usr/bin/env bash | ||
vcf=$1 | ||
|
||
module load anaconda/3/2019 | ||
|
||
bcftools summary $vcf > `basename $vcf .vcf`.stats | ||
plot-vcfstats -p `basename $vcf .vcf`.stats_plots `basename $vcf .vcf`.stats |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ params.memory = "4g" | |
|
||
|
||
if (params.help) { | ||
log.info params.help | ||
log.info params.help_message | ||
exit 0 | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters