Skip to content

Commit 2cddc3b

Browse files
committed
Change to wiki page
1 parent 8eeb36b commit 2cddc3b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

_wikis/BioJava:CookBook:PDB:read.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);`

_wikis/BioJava:CookBook:PDB:read.mediawiki

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)