-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
8ffde54
commit 8a3678f
Showing
5 changed files
with
13 additions
and
9 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
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 @@ | ||
Package: rehh | ||
Maintainer: Mathieu Gautier <[email protected]> | ||
Author: Mathieu Gautier and Renaud Vitalis | ||
Version: 1.12 | ||
Version: 1.13 | ||
License: GPL (>= 2) | ||
Title: Searching for Footprints of Selection using Haplotype | ||
Homozygosity Based Tests | ||
|
@@ -12,7 +12,7 @@ Description: Functions for the detection of footprints of selection on | |
statistics. Various plotting functions are also included to | ||
facilitate visualization and interpretation of the results. | ||
Depends: R (>= 2.10), gplots, methods | ||
Packaged: 2015-04-07 12:59:15 UTC; mathieu | ||
NeedsCompilation: yes | ||
Packaged: 2015-05-13 14:36:55 UTC; mathieu | ||
Repository: CRAN | ||
Date/Publication: 2015-04-07 16:01:24 | ||
Date/Publication: 2015-05-13 19:54:58 |
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 @@ | ||
distribplot<-function(data,col=c("blue","red"),main="iHS distribution",xlab="iHS"){ | ||
plot(density(data,na.rm=T),main=main,xlab="iHS",col=col[1]) | ||
curve(dnorm,col=col[2],add=T) | ||
smartlegend("right","top",c("Observed","Gaussian"),fill=col) | ||
legend("right","top",c("Observed","Gaussian"),fill=col) | ||
} |