An open API service indexing awesome lists of open source software.

https://github.com/pacificcommunity/ofp-sam-condor

Interact with Condor from R via SSH
https://github.com/pacificcommunity/ofp-sam-condor

htcondor ofp r sam tool

Last synced: about 1 year ago
JSON representation

Interact with Condor from R via SSH

Awesome Lists containing this project

README

          

[![CRAN Status](https://r-pkg.org/badges/version/condor)](https://cran.r-project.org/package=condor)
[![CRAN Monthly](https://cranlogs.r-pkg.org/badges/condor)](https://cran.r-project.org/package=condor)
[![CRAN Total](https://cranlogs.r-pkg.org/badges/grand-total/condor)](https://cran.r-project.org/package=condor)

condor
======

Interact with Condor from R via SSH connection. Files are first uploaded from
user machine to submitter machine, and the job is then submitted from the
submitter machine to Condor. Functions are provided to submit, list, and
download Condor jobs from R.

Condor is an open source high-throughput computing software framework for
distributed parallelization of computationally intensive tasks.

Installation
------------

The package can be installed from
[CRAN](https://cran.r-project.org/package=condor) using the `install.packages`
command:

```R
install.packages("condor")
```

Usage
-----

For a summary of the package:

```R
library(condor)
?condor
```

References
----------

* https://htcondor.org

Development
-----------

The package is developed openly on
[GitHub](https://github.com/PacificCommunity/ofp-sam-condor).

Feel free to open an
[issue](https://github.com/PacificCommunity/ofp-sam-condor/issues) there if you
encounter problems or have suggestions for future versions.

The current development version can be installed using:

```R
library(remotes)
install_github("PacificCommunity/ofp-sam-condor")
```