-
Notifications
You must be signed in to change notification settings - Fork 44
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
Refactoring of code to remove it from main and more #213
Changes from all commits
2fd0d5e
e85ae51
329b06b
c16d03e
dd195bb
ba472fe
3158029
3744a44
647039f
20068d8
62b9263
4e501f7
fb360d6
870f780
171385a
a057a10
b3acd96
1ec50e8
c1d7faa
50c3172
ae8d68e
dd47a3d
b341f1b
40c9d16
405d45d
4be470a
49d60f0
5c84a2a
654293e
12e3525
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: combine_uniprot | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- conda-forge::grep=3.11 | ||
- conda-forge::sed=4.8 | ||
- conda-forge::tar=1.34 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: compare_structures | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- conda-forge::biopython=1.84 | ||
- conda-forge::matplotlib=3.9.2 | ||
- conda-forge::pip=24.2 | ||
- conda-forge::plotly=5.24.1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: download_pdbmmcif | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- conda-forge::aria2=1.36.0 | ||
- conda-forge::rsync=3.3.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: generate_report | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- conda-forge::biopython=1.84 | ||
- conda-forge::matplotlib=3.9.2 | ||
- conda-forge::pip=24.2 | ||
- conda-forge::plotly=5.24.1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: multifasta_to_csv | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- conda-forge::grep=3.11 | ||
- conda-forge::sed=4.8 | ||
- conda-forge::tar=1.34 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: multifasta_to_singlefasta | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- conda-forge::grep=3.11 | ||
- conda-forge::sed=4.8 | ||
- conda-forge::tar=1.34 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,11 +30,11 @@ process RUN_ALPHAFOLD2_PRED { | |
|
||
output: | ||
path ("${fasta.baseName}*") | ||
tuple val(meta), path ("${meta.id}_alphafold2.pdb"), emit: main_pdb | ||
tuple val(meta), path ("${meta.id}_alphafold2.pdb") , emit: top_ranked_pdb | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we use here the prefix instead of meta id directly? So that the user could customize There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good spot! However I am not sure if we are using it to create the reports, will check and if not will update in a new PR 😄 |
||
tuple val(meta), path ("${fasta.baseName}/ranked*pdb"), emit: pdb | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here? |
||
tuple val(meta), path ("*_msa.tsv"), emit: msa | ||
tuple val(meta), path ("*_mqc.tsv"), emit: multiqc | ||
path "versions.yml", emit: versions | ||
tuple val(meta), path ("*_msa.tsv") , emit: msa | ||
tuple val(meta), path ("*_mqc.tsv") , emit: multiqc | ||
path "versions.yml" , emit: versions | ||
|
||
when: | ||
task.ext.when == null || task.ext.when | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same