Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
how_to [2019/10/18 20:57] – [Access a Bioconductor package source code?] adminhow_to [2019/10/20 20:05] – [Access a Bioconductor package source code?] admin
Line 242: Line 242:
 mkdir ~/proj; cd ~/proj mkdir ~/proj; cd ~/proj
 git clone git@git.bioconductor.org:packages/Pigengene git clone git@git.bioconductor.org:packages/Pigengene
 +</code>
 +
 +Now, you can build the package fom the source using:
 +
 +<code>
 +R CMD REMOVE Pigengene; R CMD build Pigengene
 +</code>
 +
 +If the build is successful, a tarbal will be created. You can install the new package using:
 +
 +<code>
 + R CMD INSTALL Pigengene_<Version>.tar.gz
 </code> </code>