Skip to content

Commit

Permalink
Typos fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
fischuu committed Sep 6, 2016
1 parent 68d4f4a commit e30bdbe
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 38 deletions.
8 changes: 6 additions & 2 deletions R/importVCF.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
importVCF <- function(file, na.seq="./."){
# Necessary variable declaration for Cran checks
V3 <- NULL
rn <- NULL

# First read in the header lines and determine the skip variable for the body
con <- file(file)
open(con);
Expand Down Expand Up @@ -87,5 +91,5 @@ importVCF <- function(file, na.seq="./."){
#tmp2 <- importVCF(file="/home/ejo138/ownCloud/Luke/Projects/Consulting/Dog-Liver/Data/NWT_151110.vcf")
#tmp2

genotDataVCF <- importVCF(file="/home/ejo138/ownCloud/R-Packages-Pages/GenomicTools/Datasets/genotypes.vcf")
save(genotDataVCF, file="/home/ejo138/GitHub/GenomicTools/data/genotDataVCF.rda")
#genotDataVCF <- importVCF(file="/home/ejo138/ownCloud/R-Packages-Pages/GenomicTools/Datasets/genotypes.vcf")
#save(genotDataVCF, file="/home/ejo138/GitHub/GenomicTools/data/genotDataVCF.rda")
2 changes: 1 addition & 1 deletion R/print.vcf.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Print the header
cat("First",n,"rows of $header:\n\n")
if(fullHeader){
for(i in 1:length(header)){
for(i in 1:nHeader){
cat(x$header[i],"\n")
}
} else {
Expand Down
Binary file removed data/genotDataVCF.rda
Binary file not shown.
26 changes: 0 additions & 26 deletions man/genotDataVCF.Rd

This file was deleted.

Binary file added src/GenomicTools.so
Binary file not shown.
Binary file added src/mdr.o
Binary file not shown.
Binary file added src/timeCluster.o
Binary file not shown.
12 changes: 3 additions & 9 deletions vignettes/GenomicTools-Vignette.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,11 @@ and the first rows of it look like this
genotData
```

The same file is also as vcf available. Here, the preloaded file can be made available with
On

```{r}
data("genotDataVCF")
```

and the first rows of it look like this
http://genomictools.danielfischer.name

```{r, comment=NA}
genotDataVCF
```
are also example vcf files available, that were too large to include into the package.

### An own ped/map filepair
An own filepair of ped/map files can be loaded, using the `importPED()` command:
Expand Down

0 comments on commit e30bdbe

Please sign in to comment.