-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1712 from PecanProject/develop
release 1.5.1
- Loading branch information
Showing
946 changed files
with
17,477 additions
and
10,327 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,3 +75,5 @@ shiny/BenchmarkReport/* | |
.check/ | ||
.test/ | ||
.doc/ | ||
# files generated by tests | ||
base/qaqc/tests/testthat/Rplots.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
FROM ubuntu:16.04 | ||
MAINTAINER Aman Kumar ([email protected]) | ||
|
||
# updated ppa's | ||
RUN echo "deb http://cran.rstudio.com/bin/linux/ubuntu xenial/" > /etc/apt/sources.list.d/R.list &&\ | ||
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9 | ||
|
||
# copy the installation script inside the container | ||
ADD docker/ /build | ||
|
||
# Set script mod +x for preprocessors | ||
RUN chmod 750 /build/*.sh | ||
|
||
# Run the OS System setup script | ||
RUN /build/system_services.sh | ||
|
||
# run update machine to update machine | ||
RUN /build/update_machine.sh | ||
|
||
# run install packages to install required packages | ||
RUN /build/install_packages.sh | ||
|
||
# run install R to install R packages | ||
RUN /build/install_R.sh | ||
|
||
# run install pecan to install pecan cores | ||
RUN /build/install_pecan.sh | ||
|
||
# run install sipnet to install SIPNET (default testing Model) | ||
RUN /build/install_sipnet.sh | ||
|
||
# Clean up APT when done. | ||
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /build/* | ||
|
||
# startup | ||
CMD ["/sbin/my_init"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ Package: PEcAn.all | |
Type: Package | ||
Title: PEcAn functions used for ecological forecasts and | ||
reanalysis | ||
Version: 1.5.0 | ||
Date: 2017-07-14 | ||
Version: 1.5.1 | ||
Date: 2017-09-25 | ||
Author: David LeBauer, Mike Dietze, Xiaohui Feng, Dan Wang, | ||
Mike Dietze, Carl Davidson, Rob Kooper, Shawn Serbin | ||
Maintainer: David LeBauer <[email protected]> | ||
|
@@ -18,6 +18,7 @@ Depends: | |
PEcAn.DB, | ||
PEcAn.settings, | ||
PEcAn.MA, | ||
PEcAn.logger, | ||
PEcAn.utils, | ||
PEcAn.uncertainty, | ||
PEcAn.data.atmosphere, | ||
|
@@ -26,7 +27,8 @@ Depends: | |
PEcAn.assim.batch, | ||
PEcAn.emulator, | ||
PEcAn.priors, | ||
PEcAn.benchmark | ||
PEcAn.benchmark, | ||
PEcAn.remote | ||
Suggests: | ||
PEcAn.ed, | ||
PEcAn.sipnet, | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: PEcAn.DB | ||
Type: Package | ||
Title: PEcAn functions used for ecological forecasts and reanalysis | ||
Version: 1.5.0 | ||
Date: 2017-07-14 | ||
Version: 1.5.1 | ||
Date: 2017-09-25 | ||
Author: David LeBauer, Mike Dietze, Xiaohui Feng, Dan Wang, Carl | ||
Davidson, Rob Kooper, Shawn Serbin | ||
Maintainer: David LeBauer <[email protected]> | ||
|
@@ -11,10 +11,10 @@ Description: The Predictive Ecosystem Carbon Analyzer (PEcAn) is a scientific | |
model parameterization, execution, and analysis. The goal of PECAn is to | ||
streamline the interaction between data and models, and to improve the | ||
efficacy of scientific investigation. | ||
Depends: | ||
DBI, | ||
PEcAn.utils | ||
Imports: | ||
DBI, | ||
PEcAn.logger, | ||
PEcAn.utils, | ||
plyr (>= 1.8.4) | ||
Suggests: | ||
RPostgreSQL, | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.