Skip to content

Commit

Permalink
Add pdb2fasta
Browse files Browse the repository at this point in the history
  • Loading branch information
apcamargo authored Dec 23, 2024
1 parent 82b7276 commit c4bd7d6
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions recipes/pdb2fasta/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash -euo

g++ -O3 pdb2fasta.cpp -o pdb2fasta -static
mv pdb2fasta ${PREFIX}/bin
36 changes: 36 additions & 0 deletions recipes/pdb2fasta/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{% set name = "pdb2fasta" %}
{% set version = "1.0" %}

package:
name: {{ name }}
version: {{ version }}

source:
url: https://github.com/kad-ecoli/{{ name }}/archive/refs/tags/{{ version }}.tar.gz
sha256: 63c22998df75c0a1ee9c00051d4d401e45b13651a09b98bb2885a86bc342b7bf

build:
number: 0
run_exports:
- {{ pin_subpackage('pdb2fasta', max_pin="x") }}

requirements:
build:
- {{ compiler('cxx') }}

test:
commands:
- pdb2fasta

about:
home: "https://github.com/kad-ecoli/pdb2fasta"
license: "GPL-2-only"
license_family: GPL2
license_file: License.txt
summary: "Convert PDB structures to FASTA sequences."
dev_url: "https://github.com/kad-ecoli/pdb2fasta"

extra:
additional-platforms:
- linux-aarch64
- osx-arm64

0 comments on commit c4bd7d6

Please sign in to comment.