Oooops sorry last email is incomplete:
Im trying to read CCIF files using a simple Fortran program. Essentially
this is all it is:
REAL CC(6)
CALL CCPFYP
CALL CCP4CCIF_INIT
CALL CCP4CCIF_ROPEN('CCIFIN','',ID)
CALL CCP4CCIF_GETCELL(ID,CC,VC,IE)
PRINT *,CC
END
This compiles & links without error but when I run it I get:
> tccif CCIFIN 4j8q.cif
--- CIF Dictionary loaded ---
Logical name: "MMCIFDIC", full name
"/mnt/home/ian/CCP4-7.0/ccp4-7.0-linux64-2016-12-18-1110/lib/ccp4/cif_mmdic.lib"
Information from DICTIONARY category:
Title: mmcif_pdbx.dic Version: 4.064 Datablock id:
mmcif_pdbx.dic
Loading CIF file....
>>>> CCIF signal CCIF_SYSERR (severity: SEVERE ERROR/FATAL) <<<<
(Raised in ccif_file_open)
System error: Cannot open logical file CCIFIN for reading!
System message was:
No such file or directory
> ll 4j8q.cif
-rw-rw-r-- 1 ian ian 359062 Dec 19 12:58 4j8q.cif
Any ideas?
Cheers
-- Ian