10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 03:07:44 +02:00

Merge branch 'master' into QUEST5

This commit is contained in:
Mickaël Véril 2020-06-17 17:12:26 +02:00
commit e02a5c7d07
2 changed files with 5 additions and 6 deletions

View File

@ -14,9 +14,8 @@ parser.add_argument('--file', type=argparse.FileType('r'))
parser.add_argument('--defaultType', type=str, choices=[t.name for t in list(dataType)])
parser.add_argument('--format',type=str, choices=[t.name for t in list(Format)],default=Format.LINE.name)
parser.add_argument('--debug', action='store_true', help='Debug mode')
parser.add_argument('--prefix',type=str,default=None)
parser.add_argument('--suffix',type=str,default=None)
args = parser.parse_args()
print(args)
lines=args.file.readlines()
soup=TexSoup(lines)
commands=[LaTeX.newCommand(cmd) for cmd in soup.find_all("newcommand")]
@ -29,4 +28,4 @@ if not datapath.exists():
datapath.mkdir()
datalst=dataFileBase.readFromTable(dat,format=Format[args.format],default=dataType[args.defaultType],commands=commands)
for data in datalst:
data.toFile(datapath,args.prefix)
data.toFile(datapath,args.suffix)

View File

@ -326,7 +326,7 @@ class dataFileBase(object):
dic["DOI"]="" if self.DOI is None else self.DOI
return dic
def toFile(self,datadir,prefix=None):
def toFile(self,datadir,suffix=None):
subpath=datadir/self.GetFileType().name.lower()
if not subpath.exists():
subpath.mkdir()
@ -337,8 +337,8 @@ class dataFileBase(object):
fileNameComp=[molfilename,self.method.name]
if self.method.basis:
fileNameComp.append(self.method.basis)
if prefix:
fileNameComp.append(prefix)
if suffix:
fileNameComp.append(suffix)
fileName="_".join(fileNameComp)+".dat"
file=subpath/fileName
if not file.exists():