File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -198,9 +198,35 @@ package.
198198
199199### Example
200200
201+ Use dependencies from maven
202+
203+ ``` xml
204+ <dependency >
205+ <groupId >org.biojava</groupId >
206+ <artifactId >biojava-core</artifactId >
207+ <version >4.2.4</version >
208+ </dependency >
209+ <!-- https://mvnrepository.com/artifact/org.biojava/biojava-modfinder -->
210+ <dependency >
211+ <groupId >org.biojava</groupId >
212+ <artifactId >biojava-modfinder</artifactId >
213+ <version >4.2.4</version >
214+ </dependency >
215+ ```
216+
201217This is taken from the DemoLoadSecStruc example in the ** demo** package.
202218
203219``` java
220+
221+ import org.biojava.nbio.structure.Structure ;
222+ import org.biojava.nbio.structure.StructureException ;
223+ import org.biojava.nbio.structure.align.util.AtomCache ;
224+ import org.biojava.nbio.structure.io.FileParsingParameters ;
225+ import org.biojava.nbio.structure.secstruc.DSSPParser ;
226+ import org.biojava.nbio.structure.secstruc.SecStrucCalc ;
227+ import org.biojava.nbio.structure.secstruc.SecStrucInfo ;
228+ import org.biojava.nbio.structure.secstruc.SecStrucTools ;
229+
204230public static void main(String [] args) throws IOException ,
205231 StructureException {
206232
You can’t perform that action at this time.
0 commit comments