File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,14 @@ parser deals with SEQRES and ATOM records please see
2727
2828` //the parser can read the secondary structure `
2929` // assignment from the PDB file header and add it to the amino acids `
30- ` pdbread .setParseSecStruc(true);`
30+ ` pdbreader .setParseSecStruc(true);`
3131
3232` // align the SEQRES and ATOM records, default = true `
3333` // slows the parsing speed slightly down, so if speed matters turn it off. `
3434` pdbreader.setAlignSeqRes(true); `
3535` `
3636` // parse the C-alpha atoms only, default = false `
37- ` pdbpars .setParseCAOnly(false);`
37+ ` pdbreader .setParseCAOnly(false);`
3838
3939` // download missing PDB files automatically from EBI ftp server, default = false `
4040` pdbreader.setAutoFetch(false); `
Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ see [[BioJava:CookBook:PDB:seqres]]
1717
1818 //the parser can read the secondary structure
1919 // assignment from the PDB file header and add it to the amino acids
20- pdbread .setParseSecStruc(true);
20+ pdbreader .setParseSecStruc(true);
2121
2222 // align the SEQRES and ATOM records, default = true
2323 // slows the parsing speed slightly down, so if speed matters turn it off.
2424 pdbreader.setAlignSeqRes(true);
2525
2626 // parse the C-alpha atoms only, default = false
27- pdbpars .setParseCAOnly(false);
27+ pdbreader .setParseCAOnly(false);
2828
2929 // download missing PDB files automatically from EBI ftp server, default = false
3030 pdbreader.setAutoFetch(false);
You can’t perform that action at this time.
0 commit comments