Skip to content

Commit

Permalink
Merge pull request #45 from ubinfie/kanyu-mirzam
Browse files Browse the repository at this point in the history
Fix greyskull invocation in bioconda post
  • Loading branch information
lskatz authored Oct 10, 2024
2 parents 3371f36 + ffda4d7 commit c2b427b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _posts/2024-08-16-adding-to-bioconda-quickguide.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ git switch -c add-<toolname>
## Make recipe meta.yaml
## Option 1: If using Greyskull
cd recipes/
greyskull <pypi/cran> > <toolname>/meta.yaml
greyskull <pypi/cran> <toolname>

## Option 2: If not using Greyskull
mkdir recipes/<toolname>
Expand Down Expand Up @@ -159,7 +159,7 @@ This is often sufficient for PyPi Python and many R packages (respectively).

2. Make a `meta.yaml` file within the created directory, with one of two methods:

1. If the tool is a Python package on pypi or a R package on CRAN, we can use `grayskull` to generate this for us.
1. If the tool is a Python package on pypi or a R package on CRAN, we can use `greyskull` to generate this for us.

```bash
cd recipes/
Expand All @@ -186,7 +186,7 @@ This is often sufficient for PyPi Python and many R packages (respectively).
touch recipes/<toolname>/meta.yaml
```

3. Add the following sections in the `meta.yaml` file (or double check if already made with `grayskull`).
3. Add the following sections in the `meta.yaml` file (or double check if already made with `greyskull`).
When in doubt, copy from other similar existing recipes already on Bioconda:

- `package:`
Expand Down

0 comments on commit c2b427b

Please sign in to comment.