Closed bbista closed 1 year ago
huh - did you get any dotplots in /dotplots? also, what GENESPACE version are you using?
I am using GENESPACE v1.1.4. The /dotplots folder is empty,
Best, B
Please update to the most recent release (1.1.8) and try run_genespace()
again ... let me know how it goes.
detach("package:GENESPACE", unload = TRUE)
devtools::install_github("jtlovell/GENESPACE@v1.1.8", upgrade = F)
library(GENESPACE)
Hello, I have started the run but I am getting unusual error messaged with this version:
GENESPACE v1.1.8: synteny and orthology constrained comparative
genomics
Error in match_fasta2gff(path2fasta = fa, path2gff = gf, genespaceWd = genespaceWd, :
some of the peptides have '.' or '-' in the sequence. Orthofinder can't handle this.
Calls: parse_annotations -> rbindlist -> lapply -> FUN -> match_fasta2gff
Execution halted
Again, this is using the sample data with the provided script.
ok! the new diagnostics work! OrthoFinder cannot take peptide fastas with "." or "-" symbols. This likely causes a quiet error out. Remove those characters from your peptides and try again.
These are not my peptide fastas. I am using the sample data.
really? hmm. ok, one sec.
I see the error. will correct shortly.
Its not an error ... the chicken genome has a "-"
>RHOA
-NRKHPREVDPGSEAFLSQRAYHLGRKQEGPEE*RAHKTRAGQNEA...PHRCIWIYGVFGKDQRRCEGGF*NGH*SCFASPAWQEKVRVPSLI
I guess thats standard for NCBI sometimes. I think I'll need to add a method to remove these (even though I don't want to) ... should have an update pushed later today.
Thank you.
OK, this bug should be fixed. It is now the default to remove .
and -
characters from the peptide files when parsing. Then number of these is reported. Please give it a try and let me know if it works. Update your install with:
detach("package:GENESPACE", unload = TRUE)
devtools::install_github("jtlovell/GENESPACE", upgrade = F)
library(GENESPACE)
This will install v1.1.9
v1.1.10 is pushed to master and built as the latest release. I'm gonna close this issue, since the new release should address it. If this isn't the case, please re-open. Thanks!
Hello,
It seems the original issue has not been resolved. I am still stuck at step 3.
`
############################
...human v. human: total hits = 221061, same og = 64747 ...chicken v. chicken: total hits = 190673, same og = 58479 ...human v. chicken: total hits = 224945, same og = 16863 ############## Generating dotplots for all hits ... `
what's your system and are you seeing any /dotplots generated? this should just take a minute or two at most.
The /dotplots directory is empty. I am running this on a server running Enterprise Linux 9
hmm. can you post your full script? I'm not able to re-create this issue on my linux hpc or my mac.
library(GENESPACE)
###############################################
genomeRepo <- "/work/LAS/nvalenzu-lab/bbista/Example_genespace" wd <- "/work/LAS/nvalenzu-lab/bbista/genespace" path2mcscanx <- "/work/LAS/nvalenzu-lab/bbista/Software/MCScanX/" ###############################################
dir.create(genomeRepo) rawFiles <- download_exampleData(filepath = genomeRepo)
parsedPaths <- parse_annotations( rawGenomeRepo = genomeRepo, genomeDirs = c("human", "chicken"), genomeIDs = c("human", "chicken"), presets = "ncbi", genespaceWd = wd)
gpar <- init_genespace( wd = wd, path2mcscanx = path2mcscanx)
out <- run_genespace(gpar)
I should be identical to the example one in the readme.
I'm not sure ... I just ran this exact code on both machines from scratch and it ran through without any trouble. Maybe reinstall your conda env and GENESPACE? run_test13Apr.pdf
Hi @jtlovell,
I am encountering the exact same issue as seen here, and I was wondering if you could help me troubleshoot. Due to my Orthofinder v2.5.4 installed on my Linux cluster about 2 years ago or so with the StdEnv/2020, I am using R v4.1, and installed other dependent R packages to be compatible with that version. MCScanX was installed from the Github master branch just this month. GENESPACE version is 1.3.1. My other installed program versions are: gcc/9.3.0 python/3.8 java/17.0.2 diamond/2.0.15. Do you know if this issue of being stuck at "generating dotplots" is some kind of installation issue? Is there a solution to it?
Thank you, Kaede
Update: I downloaded everything in R v4.3 instead, and it now works with no problems. I don't know what the issue was in the previous installation...
Hello, I was wondering what the run time for the sample data is. My script has been stuck in one of the steps and it usually times out after that. I am trying to run the sample data just as the readme states. I have not modified the scripts in anyway.
This is the furthest I have gotten. It gets stuck in this for day until the script times out.
Any help is appreciated.
Best, Basanta