-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Hello,
I am trying to use AlphaPhase, but I have encountered several issues both during compilation and execution.
1. Compilation Issues from the Repository
I cloned the repository and tried to compile it, but I ran into the following errors:
-
When running
bash Compile.sh, I got the following error:rm: cannot remove 'alphaphase': No such file or directory rm: cannot remove '*.mod': No such file or directory Compile.sh: line 3: ifort: command not foundIt seems that the script tries to remove files that do not exist and requires
ifort, but not all systems have the Intel compiler installed. -
I tried compiling with
gfortraninstead ofifort, but there were issues with the compiler flags. -
I also ran
make_zip_file.sh, but encountered this error:make: *** No rule to make target 'latexpdf'. Stop. cp: cannot stat 'AlphaPhase-doc/build/latex/AlphaPhase.pdf': No such file or directory The manual needs to be built.It looks like some files or dependencies for generating the documentation are missing.
2. Issues with the Precompiled Version
To avoid compilation issues, I decided to use the executable included in AlphaPhase.zip. This contains version 1.3.8, which runs correctly. However, when checking the PhasingResults folder, I found that only the FinalPhaseX.txt files are generated, but not FinalPhase.txt, which should contain the full results.
Could you help me resolve these issues? Is there a way to obtain FinalPhase.txt with version 1.3.8, or is there an additional step I need to follow?
Thanks in advance!