aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Erdmann <dywi@mailerd.de>2012-07-18 09:55:24 +0200
committerAndré Erdmann <dywi@mailerd.de>2012-07-18 09:55:24 +0200
commit8f66a2236a7f944fdceb4582598a65f1848b90d4 (patch)
tree5b45cdfeb3e2fb3b19cdb0c5070e21c79157e71c /examples
parentadd BIOC, CRAN archive to repo.list (diff)
downloadR_overlay-8f66a2236a7f944fdceb4582598a65f1848b90d4.tar.gz
R_overlay-8f66a2236a7f944fdceb4582598a65f1848b90d4.tar.bz2
R_overlay-8f66a2236a7f944fdceb4582598a65f1848b90d4.zip
remove old (unused) example files
gelöscht: examples/DESCRIPTION/NbClust_1.0 gelöscht: examples/DESCRIPTION/SPARQL_1.0 gelöscht: examples/DESCRIPTION/Taxonstand_1.0 gelöscht: examples/packages/get.sh
Diffstat (limited to 'examples')
-rw-r--r--examples/DESCRIPTION/NbClust_1.021
-rw-r--r--examples/DESCRIPTION/SPARQL_1.019
-rw-r--r--examples/DESCRIPTION/Taxonstand_1.015
-rwxr-xr-xexamples/packages/get.sh54
4 files changed, 0 insertions, 109 deletions
diff --git a/examples/DESCRIPTION/NbClust_1.0 b/examples/DESCRIPTION/NbClust_1.0
deleted file mode 100644
index 817adfd..0000000
--- a/examples/DESCRIPTION/NbClust_1.0
+++ /dev/null
@@ -1,21 +0,0 @@
-Package: NbClust
-Type: Package
-Title: An examination of indices for determining the number of clusters
- : NbClust Package
-Version: 1.0
-Date: 2012-05-01
-Author: Malika Charrad <malika.charrad.1@ulaval.ca> and Nadia Ghazzali
- <nadia.ghazzali@mat.ulaval.ca> and Veronique Boiteau
- <veronique.boiteau.1@ulaval.ca> and Azam Niknafs
- <azam.niknafs.1@ulaval.ca>
-Maintainer: : Nadia Ghazzali <nadia.ghazzali@mat.ulaval.ca>
-Description: This package provides most of the popular indices for
- cluster validation ready to use for the outputs produced by
- functions coming from the same package. It also proposes to
- user the best clustering scheme from the different results
- obtained by varying all combinations of number of clusters,
- distance measures, and clustering methods.
-License: GPL-2
-Packaged: 2012-05-23 14:26:58 UTC; CRSNG-INAL-3
-Repository: CRAN
-Date/Publication: 2012-05-23 16:21:05
diff --git a/examples/DESCRIPTION/SPARQL_1.0 b/examples/DESCRIPTION/SPARQL_1.0
deleted file mode 100644
index 555866d..0000000
--- a/examples/DESCRIPTION/SPARQL_1.0
+++ /dev/null
@@ -1,19 +0,0 @@
-Package: SPARQL
-Type: Package
-Title: SPARQL client
-Version: 1.9
-Date: 2012-05-22
-Author: Willem Robert van Hage <W.R.van.Hage@vu.nl> and Tomi Kauppinen
- <tomi.kauppinen@uni-muenster.de>, with contributions from
- Christopher Davis <C.B.Davis@tudelft.nl> and Jesper Hoeksema
- <J.E.Hoeksema@vu.nl>
-Maintainer: Willem Robert van Hage <W.R.van.Hage@vu.nl> and Tomi
- Kauppinen <tomi.kauppinen@uni-muenster.de>
-Description: Use SPARQL to pose SELECT or UPDATE queries to an
- end-point.
-License: GPL-3
-Depends: XML, RCurl
-LazyLoad: yes
-Packaged: 2012-05-22 09:39:27 UTC; wrvhage
-Repository: CRAN
-Date/Publication: 2012-05-22 13:05:32
diff --git a/examples/DESCRIPTION/Taxonstand_1.0 b/examples/DESCRIPTION/Taxonstand_1.0
deleted file mode 100644
index 94355f7..0000000
--- a/examples/DESCRIPTION/Taxonstand_1.0
+++ /dev/null
@@ -1,15 +0,0 @@
-Package: Taxonstand
-Type: Package
-Title: Taxonomic standardization of plant species names
-Version: 1.0
-Date: 2012-03-21
-Author: Luis Cayuela
-Maintainer: Luis Cayuela <luis.cayuela@urjc.es>
-Description: Automated standardization of taxonomic names and removal
- of orthograhpic errors in plant species names using the The
- Plant List (TPL) website (www.theplantlist.org)
-License: GPL (>= 2)
-LazyLoad: yes
-Packaged: 2012-05-21 08:14:50 UTC; luis
-Repository: CRAN
-Date/Publication: 2012-05-21 08:36:09
diff --git a/examples/packages/get.sh b/examples/packages/get.sh
deleted file mode 100755
index a274cda..0000000
--- a/examples/packages/get.sh
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/bash
-# temporary script
-# extracts data (=files) out of a R src package
-#
-
-## this is a multicall script whose only functionality is get(file, *info) - don't rename
-
-readonly _ARGV="$*"
-_SELF="${0##*/}"
-_SELF="${_SELF%.*sh}"
-readonly _SELF
-set --
-set -u
-
-# get (file, *info)
-# extracts *info out of file (or all gzip-tarballs in `pwd`)
-#
-get() {
- local file="${1:-}" x fname name
- shift ||:
-
- [[ "$file" ]] || return ${undone:-101}
-
- if [[ "$file" == "all" ]]; then
- for x in *.tar.gz *.tgz; do
- if [[ -r "$x" ]]; then
- get "$x" $* || return $?
- fi
- done
- return 0
- fi
-
- fname="${file##*/}"
- fname="${fname%%.*}"
- name="${fname%%_*}"
- for x in $*; do
- case "${x}" in
- desc) tar xvzf "$file" "${name}/DESCRIPTION" && \
- mv -f -v -- "${name}/DESCRIPTION" "${name}.desc" &&
- rmdir "${name}" && chmod a=r "${name}.desc" || return $?
- ;;
- *) return ${undef:-56} ;;
- esac
- done
- return 0
-}
-
-__error__() {
- local -i _ret=$?
- 1>&2 echo "error when calling method '${1:-$_SELF}'."
- return $_ret
-}
-
-${_SELF} $_ARGV || __error__ "${_SELF}"