-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ee4cbb
commit 3b693aa
Showing
23 changed files
with
150 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
index/index_swissprot/swissprot.lookup filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_h.index filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_mapping filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_ss.index filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot.version filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_ss.dbtype filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot.dbtype filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot.index filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_ca.index filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_h filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_ss filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_ca filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_ca.dbtype filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_h.dbtype filter=lfs diff=lfs merge=lfs -text | ||
index/index_swissprot/swissprot_taxonomy filter=lfs diff=lfs merge=lfs -text |
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,26 @@ | ||
# copy from Tanjo-san's repository https://github.com/tom-tan/cwl-template-for-vscode/blob/main/.github/workflows/ci.yml | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup python for cwltool | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11.x' | ||
- name: Install cwltool | ||
run: pip install cwltool | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 'latest' | ||
- name: Run tests | ||
id: run-tests | ||
uses: common-workflow-lab/run-tests@v1 | ||
with: | ||
test-list: test.yml | ||
runner: cwltool | ||
timeout: 30 |
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,47 @@ | ||
#!/usr/bin/env cwl-runner | ||
# Generated from: foldseek databases CATH50 cath50 tmp --threads 16 | ||
class: CommandLineTool | ||
cwlVersion: v1.2 | ||
|
||
requirements: | ||
ShellCommandRequirement: {} | ||
NetworkAccess: | ||
networkAccess: true | ||
inputs: | ||
- id: database | ||
label: "Database name" | ||
type: string | ||
default: "Alphafold/Swiss-Prot" | ||
- id: index_dir_name | ||
label: "Index directory name" | ||
type: string | ||
default: "index_swissprot" | ||
- id: index_name | ||
type: string | ||
default: "swissprot" | ||
- id: tmp_dir | ||
type: string | ||
default: "tmp" | ||
- id: threads | ||
type: int | ||
default: 16 | ||
|
||
arguments: | ||
- shellQuote: false | ||
valueFrom: | | ||
mkdir -p $(inputs.index_dir_name) | ||
foldseek databases $(inputs.database) $(inputs.index_dir_name)/$(runtime.tmpdir) $(inputs.tmp_dir) --threads $(inputs.threads) | ||
|
||
outputs: | ||
- id: all-for-debugging | ||
type: | ||
type: array | ||
items: | ||
- File | ||
- Directory | ||
outputBinding: | ||
glob: "*" | ||
|
||
hints: | ||
- class: DockerRequirement | ||
dockerPull: quay.io/biocontainers/foldseek:9.427df8a--pl5321hb365157_1 |
Binary file not shown.
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
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,10 @@ | ||
- job: job/plant2human_job_example_os.yml #index ファイルを後で別の所に置いておく | ||
tool: Workflow/plant2human.cwl | ||
output: | ||
out: | ||
class: File | ||
basename: output.txt | ||
checksum: sha1$2af1a59da667eb4aedb182248c1d91741df7e24d # このchecksumはどこから取ってくる?? | ||
size: 31 | ||
doc: Template for cwltest | ||
id: test-example |