Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed extra bullets, added ul #184

Merged
merged 6 commits into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,34 +1,26 @@
FROM ruby:2.6.5
bp289 marked this conversation as resolved.
Show resolved Hide resolved

## System dependencies
RUN apt-get update && apt-get install -y \
rsync \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

## Install gems
COPY Gemfile /opt
COPY Gemfile.lock /opt

## Set the working directory to /opt/bioconductor.org
WORKDIR /opt/bioconductor.org

## Copy the remaining files from bioconductor.org/ to /opt/bioconductor.org
COPY . .

## Install bundle and dependencies
RUN gem install bundler
RUN bundle install --jobs=4 && bundle clean --force

## Set up web server
EXPOSE 3000

## Create startup script
RUN echo '#! /bin/bash' > .startup.sh \
&& echo 'cd /opt/bioconductor.org' >> .startup.sh \
&& echo 'rake' >> .startup.sh \
&& echo 'cd output' >> .startup.sh \
&& echo 'adsf' >> .startup.sh \
&& chmod +x .startup.sh

CMD ["/opt/bioconductor.org/.startup.sh"]
CMD ["/opt/bioconductor.org/.startup.sh"]
8 changes: 4 additions & 4 deletions content/about/package-reviewers.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ submitted packages must abide by the Bioconductor [Code of Conduct][].
<li>Lori Shepherd*</li>
<li>Dario Strbenac</li>
<li>Luke Zappia</li>

\*Current Package Review Administrators

</ul>

## Past Package Reviewers
<p>*Current Package Review Administrators</p>

## Past Package Reviewers
<ul>
<li>Martin Morgan</li>
<li>Nitesh Turaga</li>
</ul>
1 change: 1 addition & 0 deletions lib/data_sources/bioc_views.rb
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ def items
items.push(get_index_page(packages, v, version))

for package in packages.keys
if (package != "limma") then next end
bp289 marked this conversation as resolved.
Show resolved Hide resolved
repo = k
id = "/#{version}/#{repo}#{package}/"
pkgs = packages[package]
Expand Down
4 changes: 2 additions & 2 deletions scripts/get_json.rb
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ def get_bioc_views(dcfs, repo, version)

call = "git archive --remote=ssh://[email protected]/packages/biocViews #{branch} inst/extdata/biocViewsVocab.sqlite | tar -x --strip=2 -C #{tempDir}"
# local test changes to biocViews
# call = "cp /home/lori/b/Rpacks/biocViews/inst/extdata/biocViewsVocab.sqlite #{tempDir}"

call = "cp /Users/birajpantha/Documents/stuff/biocViews/inst/extdata/biocViewsVocab.sqlite #{tempDir}"
# call = "cp /home/lori/b/Rpacks/biocViews/inst/extdata/biocViewsVocab.sqlite #{tempDir}"
bp289 marked this conversation as resolved.
Show resolved Hide resolved
system(call)
dbfile = "#{tempDir}/biocViewsVocab.sqlite"
db = SQLite3::Database.new(dbfile)
Expand Down
Loading