-
Notifications
You must be signed in to change notification settings - Fork 9
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
PAML installation from source #7
Conversation
Renaming "wgd" module to "wgd_ksrates": |
Hmm. We do not use the |
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.
See a few edits and comments.
LICENSE
Outdated
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail. | |||
If the program does terminal interaction, make it output a short | |||
notice like this when it starts in an interactive mode: | |||
|
|||
Ks Rate-Correction Copyright (C) 2020 Cecilia SENSALARI | |||
ksrates Copyright (C) 2020 Cecilia SENSALARI |
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.
Should probably be 2021. I know you did a lot of the coding, but I think any copyright should maybe at least go to both of us or the ESB lab instead.
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. | ||
This is free software, and you are welcome to redistribute it | ||
under certain conditions; type `show c' for details. |
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.
We don't have any of those commands, this section would need to be adjusted.
@@ -2,7 +2,7 @@ Bootstrap: docker | |||
From: vibpsb/i-adhore |
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.
Why this? Also in Dockerfile.
doc/source/installation.rst
Outdated
@@ -99,23 +100,41 @@ Without the use of a container the installation of *ksrates* and its dependencie | |||
cd ksrates | |||
pip3 install . | |||
|
|||
3. Non-Python dependencies can be installed in two possible ways. | |||
3. Most of non-Python dependencies can be installed in two possible ways. |
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.
Note that this is specific for Linux. Any suggestion for Windows? (I can add macOS later.)
@@ -383,6 +383,7 @@ def ks_orthologs(species1, species2, cds_fasta1, cds_fasta2, base_dir='.', eval_ | |||
if isinstance(results_df, type(None)) or results_df.empty: | |||
logging.warning('No ortholog Ks data computed, will write empty ortholog Ks file!') | |||
with open(os.path.join(output_dir, output_ks_file), 'w+') as o: | |||
results_df = results_df.rename(columns={"Paralog1":"Ortholog1", "Paralog2":"Ortholog2"}) |
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.
It doesn't need any changes elsewhere, i.e. the column names are not read/used anywhere in our or wgd
's code? Just making sure.
Co-authored-by: lohausr <56632794+lohausr@users.noreply.github.com>
In containers PAML is now installed from source
Installation.rst updated for PAML local installation
Renamed "Paralog1" to "Ortholog1" in ortholog TSV file
Nextflow command is now without square brackets for the "-c" parameter
Lincense has now "ksrates" instead of "ks rate-correction"