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

r-plasmapAMR #47998

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
074c6b4
Create meta.yaml
melparker101 May 22, 2024
5ec05b8
Create build.sh
melparker101 May 22, 2024
4c1d397
Update meta.yaml
melparker101 May 22, 2024
c32641a
Update meta.yaml
melparker101 May 22, 2024
cb015bf
Update meta.yaml
melparker101 May 22, 2024
700ae00
Update meta.yaml
melparker101 May 22, 2024
500e9a8
Update meta.yaml
melparker101 May 22, 2024
75d99b4
Update meta.yaml
melparker101 May 22, 2024
310fd5b
Trigger CI checks
May 23, 2024
702d59a
Trigger CI checks
May 23, 2024
fae602d
Update meta.yaml
melparker101 May 23, 2024
f1ed9c7
Trigger CI checks
May 23, 2024
333c9eb
Trigger CI checks again
May 23, 2024
44c8004
Merge branch 'master' into r-plasmapAMR
melparker101 May 23, 2024
e3d3d19
Update meta.yaml
melparker101 May 23, 2024
7450999
Trigger CI checks again
May 23, 2024
4172964
Update meta.yaml
melparker101 May 23, 2024
cee730f
Trigger CI checks again
May 23, 2024
a56a0c0
Trigger CI checks again
May 23, 2024
8a6f17d
Trigger CI checks again
May 23, 2024
24e52a2
Trigger CI checks again
May 23, 2024
7092fdc
Update meta.yaml
melparker101 May 23, 2024
e290ddb
Trigger CI checks again
May 23, 2024
3316a7d
Update meta.yaml
melparker101 May 24, 2024
996b1d5
Update meta.yaml
melparker101 May 24, 2024
c467cbd
Update build.sh
melparker101 May 24, 2024
06a84c0
Update meta.yaml
melparker101 May 24, 2024
d631aea
Trigger CI checks again
May 24, 2024
dd67bb2
Update meta.yaml
melparker101 May 24, 2024
7a865e8
Trigger CI checks again
May 24, 2024
a1e1636
Update meta.yaml
melparker101 May 24, 2024
2e1641d
Trigger CI checks again
May 24, 2024
fd8e41d
Update meta.yaml
melparker101 May 24, 2024
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
1 change: 1 addition & 0 deletions recipes/r-plasmapAMR/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$R CMD INSTALL --build .
50 changes: 50 additions & 0 deletions recipes/r-plasmapAMR/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{% set version = "0.1.2" %}
{% set sha256 = "4a4656f51e9d91ba13a81260012a901e5150fb185ed0a766a3e8d3bd973a5a02" %}

package:
name: r-plasmapAMR
version: {{ version }}

source:
url: https://github.com/melparker101/plasmapAMR/archive/refs/tags/v{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 0
noarch: generic
rpaths:
- lib/R/lib/
- lib/
run_exports:
- {{ pin_subpackage('r-plasmapAMR', max_pin="0.1.2") }}

requirements:
host:
- r-base 4.2.1
run:
- r-base 4.2.1
- r-plasmapAMR
- r-tidyverse
- r-stringr
- r-ggrepel
- r-cli
- r-readr
- r-rlang
- r-methods
- r-ggfittext 0.10.0

test:
commands:
- $R -e "library('plasmapAMR')"


about:
home: https://github.com/melparker101/plasmapAMR
dev_url: https://github.com/melparker101/plasmapAMR
license: MIT
license_file: LICENSE
summary: Create circular plasmid maps as ggplot objects. Original package at https://github.com/BradyAJohnston/plasmapR.
This fork allows for the plotting of genes as well as other features. All labels are outside of the plotted feature arrows.
extra:
recipe-maintainers:
- melparker101