<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Martin Schobben</title>
    <description>The latest articles on Forem by Martin Schobben (@martinschobben).</description>
    <link>https://forem.com/martinschobben</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1356775%2Fa412b082-fec9-4eb0-981c-ff865d08edd4.jpeg</url>
      <title>Forem: Martin Schobben</title>
      <link>https://forem.com/martinschobben</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/martinschobben"/>
    <language>en</language>
    <item>
      <title>Linking R to iRODS’ new HTTP API 🥳</title>
      <dc:creator>Martin Schobben</dc:creator>
      <pubDate>Mon, 18 Mar 2024 07:14:02 +0000</pubDate>
      <link>https://forem.com/martinschobben/linking-r-to-irods-new-http-api-58a3</link>
      <guid>https://forem.com/martinschobben/linking-r-to-irods-new-http-api-58a3</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;NOTE:&lt;/em&gt;&lt;/strong&gt; &lt;br&gt;
This article is about the release of &lt;code&gt;rirods&lt;/code&gt; 0.2.0 (see the &lt;a href="http://rirods.irods4r.org"&gt;documentation&lt;/a&gt;). iRODS C++ HTTP 0.2.0 is a requirement for this R package.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As of November 2023 &lt;a href="https://irods.org"&gt;iRODS&lt;/a&gt; has released the &lt;a href="https://irods.org/2023/11/initial-release-of-the-irods-http-api/"&gt;iRODS C++ HTTP API&lt;/a&gt;, as a replacement of the old &lt;a href="https://github.com/irods/irods_client_rest_cpp"&gt;iRODS C++ REST API&lt;/a&gt;. This new interface to the iRODS server comes with a host of improvements including flexibility of management for all types of operations on users, collections and data objects, as well as supporting authentication with &lt;a href="https://openid.net/developers/how-connect-works/"&gt;OpenID Connect&lt;/a&gt;. The HTTP API is steadily maturing, so it was about time to leverage this functionality with &lt;code&gt;rirods&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Besides a lot of potential for future rirods development in terms of iRODS operations, this new release (rirods 0.2.0) ensures some obvious improvements on the same core functionality as in previous releases of rirods. In this blog we will showcase one of those improvements—the speed of uploading and downloading of files to iRODS. The new HTTP API&lt;br&gt;
can now be configured to allow receiving of much larger payloads. An example of how the HTTP API can be configured with a JSON file can be seen &lt;a href="https://github.com/irods/irods_demo/blob/main/irods_client_http_api/config.json"&gt;here&lt;/a&gt;. On top of that, write requests can now be made in parallel, which can as well be configured for the number of allowed threads.&lt;/p&gt;

&lt;p&gt;In order to benchmark this improvement we show upload and download time as well as memory usage for &lt;code&gt;iget()&lt;/code&gt; and &lt;code&gt;iput()&lt;/code&gt;, respectively. We use the Docker based &lt;a href="https://github.com/irods/irods_demo"&gt;iRODS demo&lt;/a&gt; as our server. We can easily stand this server up, as follows:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight r"&gt;&lt;code&gt;&lt;span class="n"&gt;library&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;rirods&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="n"&gt;use_irods_demo&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Do the following to connect with the iRODS demo server: 
create_irods("http://localhost:9001/irods-http-api/0.2.0") 
iauth("rods", "rods")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;For more information on &lt;code&gt;use_irods_demo()&lt;/code&gt; see the &lt;code&gt;demo&lt;/code&gt; vignette (&lt;code&gt;vignette("demo", package = "rirods")&lt;/code&gt;) or this &lt;a href="https://rirods.irods4r.org/articles/demo.html"&gt;page&lt;/a&gt;. Now hat the demo server is running we can log in to the system by following the instructions as printed above.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight r"&gt;&lt;code&gt;&lt;span class="n"&gt;create_irods&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"http://localhost:9001/irods-http-api/0.2.0"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="w"&gt; 
&lt;/span&gt;&lt;span class="n"&gt;iauth&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"rods"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"rods"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This server does obviously not contain any collections or data objects, as can be seen by using &lt;code&gt;ils()&lt;/code&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight r"&gt;&lt;code&gt;&lt;span class="n"&gt;ils&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This collection does not contain any objects or collections.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;This demo server has been configured to allow receiving request bodies of up to 8.4 Mb and we can use a maximum of 3 threads simultaneously during a write operation.&lt;/p&gt;

&lt;p&gt;The files transferred to the irods demo server are created with the &lt;a href="https://docs.github.com/en/rest?apiVersion=2022-11-28"&gt;GitHub API&lt;/a&gt; and the R package &lt;code&gt;gh&lt;/code&gt;. The number of repositories and commits for the GitHub Groups; &lt;a href="https://github.com/git"&gt;git&lt;/a&gt;, &lt;a href="https://github.com/irods"&gt;irods&lt;/a&gt;, &lt;a href="https://github.com/nodejs"&gt;nodejs&lt;/a&gt;, and &lt;a href="https://github.com/tidyverse"&gt;tidyverse&lt;/a&gt; have been downloaded (7&lt;sup&gt;th&lt;/sup&gt; March 2024). The downloaded results are then saved as csv files. The files generated in this way range in size from 2 Kb to 10 Mb (Figure 1). The script and files can be found &lt;a href="https://github.com/FAIReLABS/iRODS4R/tree/main/posts/rirods-0-2-0"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuaui3ov6mvpu6txkv63y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuaui3ov6mvpu6txkv63y.png" alt="Figure 1: Number of repositories and commits on GitHub for the groups git, irods, nodejs, and tidyverse." width="800" height="457"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;These files are then transferred to the demo server with &lt;code&gt;iput()&lt;/code&gt; and subsequently retrieved with &lt;code&gt;iget()&lt;/code&gt;, while comparing rirods 0.1.2 and 0.2.0. This is repeated 100 times and performance was monitored with the R package &lt;code&gt;bench&lt;/code&gt;. We can see that the newer version shows a drastic improvement for file transfers in both directions (Figure 2). This was to be expected as the older &lt;code&gt;rirods&lt;/code&gt; package version needed to chop up the file before transferring it chunk-by-chunk to the server at relatively small file sizes (Kb range). As this all took place in R, this was necessarily slow.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbggx5hdt9tujpjric2a7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbggx5hdt9tujpjric2a7.png" alt="Figure 2: Median time of file transfer for iget() and iput() based on bench." width="800" height="571"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The same can be said for the memory allocated to up- and download files to iRODS, which improves in the newer version of &lt;code&gt;rirods&lt;/code&gt; (Figure 3). We see that above the threshold for file transfers configured server-side imposes a little more strain on the system above 8 Mb, as we also need to chop the file in pieces in these instances.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn5n150mm2nr3k228lxg7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn5n150mm2nr3k228lxg7.png" alt="Figure 3: Memory allocated for file transfer for iget() and iput() based on bench." width="800" height="571"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Increased write and read operations are an obvious improvement when using rirods 0.2.0 and the iRODS HTTP API has a lot of potential to add even more functionality to rirods in the future. Read more about the changes in some of the functions interfaces in the &lt;a href="https://rirods.irods4r.org/news/index.html"&gt;changelog&lt;/a&gt;. Contributions to the package are warmly welcomed. Please report issues and make pull requests in the &lt;a href="https://github.com/irods/irods_client_library_rirods"&gt;GitHub repository of rirods&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The following table list all of the benchmark results.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;source&lt;/th&gt;
&lt;th&gt;fun name&lt;/th&gt;
&lt;th&gt;file name&lt;/th&gt;
&lt;th&gt;file size (Mb)&lt;/th&gt;
&lt;th&gt;memory allocated (Mb)&lt;/th&gt;
&lt;th&gt;median time (sec)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;git_repos&lt;/td&gt;
&lt;td&gt;0.00&lt;/td&gt;
&lt;td&gt;0.13&lt;/td&gt;
&lt;td&gt;0.11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;tidyverse_repos&lt;/td&gt;
&lt;td&gt;0.01&lt;/td&gt;
&lt;td&gt;1.20&lt;/td&gt;
&lt;td&gt;0.31&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;irods_repos&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;td&gt;5.01&lt;/td&gt;
&lt;td&gt;1.58&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;nodejs_repos&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;td&gt;5.88&lt;/td&gt;
&lt;td&gt;1.67&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;tidy_commits&lt;/td&gt;
&lt;td&gt;2.88&lt;/td&gt;
&lt;td&gt;307.80&lt;/td&gt;
&lt;td&gt;80.21&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;git_commits&lt;/td&gt;
&lt;td&gt;4.92&lt;/td&gt;
&lt;td&gt;526.89&lt;/td&gt;
&lt;td&gt;131.62&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;irods_commits&lt;/td&gt;
&lt;td&gt;6.52&lt;/td&gt;
&lt;td&gt;695.48&lt;/td&gt;
&lt;td&gt;180.09&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;nodejs_commits&lt;/td&gt;
&lt;td&gt;9.69&lt;/td&gt;
&lt;td&gt;1010.00&lt;/td&gt;
&lt;td&gt;268.12&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;git_repos&lt;/td&gt;
&lt;td&gt;0.00&lt;/td&gt;
&lt;td&gt;0.12&lt;/td&gt;
&lt;td&gt;0.16&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;tidyverse_repos&lt;/td&gt;
&lt;td&gt;0.01&lt;/td&gt;
&lt;td&gt;1.18&lt;/td&gt;
&lt;td&gt;0.45&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;irods_repos&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;td&gt;5.00&lt;/td&gt;
&lt;td&gt;1.96&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;nodejs_repos&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;td&gt;5.87&lt;/td&gt;
&lt;td&gt;2.13&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;tidy_commits&lt;/td&gt;
&lt;td&gt;2.88&lt;/td&gt;
&lt;td&gt;308.06&lt;/td&gt;
&lt;td&gt;107.14&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;git_commits&lt;/td&gt;
&lt;td&gt;4.92&lt;/td&gt;
&lt;td&gt;526.34&lt;/td&gt;
&lt;td&gt;176.25&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;irods_commits&lt;/td&gt;
&lt;td&gt;6.52&lt;/td&gt;
&lt;td&gt;696.10&lt;/td&gt;
&lt;td&gt;244.76&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.1.2"&gt;https://cran.r-project.org/src/contrib/rirods_0.1.2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;nodejs_commits&lt;/td&gt;
&lt;td&gt;9.69&lt;/td&gt;
&lt;td&gt;1010.00&lt;/td&gt;
&lt;td&gt;364.56&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;git_repos&lt;/td&gt;
&lt;td&gt;0.00&lt;/td&gt;
&lt;td&gt;1.10&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;tidyverse_repos&lt;/td&gt;
&lt;td&gt;0.01&lt;/td&gt;
&lt;td&gt;1.10&lt;/td&gt;
&lt;td&gt;0.11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;irods_repos&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;td&gt;1.10&lt;/td&gt;
&lt;td&gt;0.12&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;nodejs_repos&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;td&gt;1.10&lt;/td&gt;
&lt;td&gt;0.11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;tidyverse_commits&lt;/td&gt;
&lt;td&gt;2.88&lt;/td&gt;
&lt;td&gt;1.10&lt;/td&gt;
&lt;td&gt;0.17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;git_commits&lt;/td&gt;
&lt;td&gt;4.92&lt;/td&gt;
&lt;td&gt;1.12&lt;/td&gt;
&lt;td&gt;0.24&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;irods_commits&lt;/td&gt;
&lt;td&gt;6.52&lt;/td&gt;
&lt;td&gt;1.10&lt;/td&gt;
&lt;td&gt;0.29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iget&lt;/td&gt;
&lt;td&gt;nodejs_commits&lt;/td&gt;
&lt;td&gt;9.69&lt;/td&gt;
&lt;td&gt;1.10&lt;/td&gt;
&lt;td&gt;0.42&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;git_repos&lt;/td&gt;
&lt;td&gt;0.00&lt;/td&gt;
&lt;td&gt;2.17&lt;/td&gt;
&lt;td&gt;0.09&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;tidyverse_repos&lt;/td&gt;
&lt;td&gt;0.01&lt;/td&gt;
&lt;td&gt;2.18&lt;/td&gt;
&lt;td&gt;0.10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;irods_repos&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;td&gt;2.21&lt;/td&gt;
&lt;td&gt;0.11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;nodejs_repos&lt;/td&gt;
&lt;td&gt;0.05&lt;/td&gt;
&lt;td&gt;2.22&lt;/td&gt;
&lt;td&gt;0.09&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;tidyverse_commits&lt;/td&gt;
&lt;td&gt;2.88&lt;/td&gt;
&lt;td&gt;4.92&lt;/td&gt;
&lt;td&gt;0.16&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;git_commits&lt;/td&gt;
&lt;td&gt;4.92&lt;/td&gt;
&lt;td&gt;7.22&lt;/td&gt;
&lt;td&gt;0.17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;irods_commits&lt;/td&gt;
&lt;td&gt;6.52&lt;/td&gt;
&lt;td&gt;8.38&lt;/td&gt;
&lt;td&gt;0.23&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://cran.r-project.org/src/contrib/rirods_0.2.0"&gt;https://cran.r-project.org/src/contrib/rirods_0.2.0&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;iput&lt;/td&gt;
&lt;td&gt;nodejs_commits&lt;/td&gt;
&lt;td&gt;9.69&lt;/td&gt;
&lt;td&gt;752.86&lt;/td&gt;
&lt;td&gt;2.92&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Benchmarks results for &lt;code&gt;iget&lt;/code&gt; and &lt;code&gt;iput&lt;/code&gt;.&lt;/p&gt;

</description>
      <category>openscience</category>
      <category>data</category>
      <category>rstats</category>
      <category>irods</category>
    </item>
  </channel>
</rss>
