forked from knausb/vcfR
-
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.
- Loading branch information
Showing
3 changed files
with
15 additions
and
2 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ Description: Facilitates easy manipulation of variant call format (VCF) data. | |
data may be written to a VCF file (*.vcf.gz). It also may be converted into | ||
other popular R objects (e.g., genlight, DNAbin). VcfR provides a link between | ||
VCF data and familiar R software. | ||
Version: 1.11.0 | ||
Version: 1.12.0 | ||
Authors@R: c( | ||
person(c("Brian", "J."), "Knaus", role = c("cre", "aut"), | ||
email = "[email protected]", comment = c(ORCID = "0000-0003-1665-4343")), | ||
|
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,6 +1,15 @@ | ||
#!/bin/sh | ||
|
||
# Thank you to the community for help! | ||
# | ||
checkbashisms --force | ||
# How to install checkbashisms. | ||
# https://github.com/simonwhitaker/linter-checkbashisms | ||
# | ||
# What to include in configure. | ||
# https://stackoverflow.com/a/62721142 | ||
|
||
if [ -f /usr/bin/checkbashisms ]; then | ||
checkbashisms --force | ||
fi | ||
|
||
# EOF. |