File: fix_import

package info (click to toggle)
biojava4-live 4.2.12%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 107,344 kB
  • sloc: java: 246,196; xml: 27,590; sh: 95; makefile: 86; python: 64
file content (21 lines) | stat: -rw-r--r-- 830 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Subject: missing imports
Description: some classes are not imported
Author: Olivier Sallou
Last-Updated: 2015-01-31
Forwarded: no
--- a/biojava-structure-gui/src/main/java/demo/DemoAlignmentFromFasta.java
+++ b/biojava-structure-gui/src/main/java/demo/DemoAlignmentFromFasta.java
@@ -44,6 +44,13 @@ import org.biojava.nbio.structure.align.
 import org.biojava.nbio.structure.io.FastaStructureParser;
 import org.biojava.nbio.structure.io.StructureSequenceMatcher;
 
+import org.biojava.nbio.structure.StructureException;
+import org.biojava.nbio.structure.Structure;
+import org.biojava.nbio.structure.StructureTools;
+import org.biojava.nbio.structure.Atom;
+import org.biojava.nbio.structure.ResidueNumber;
+
+
 /**
  * Demo of how to use the {@link FastaStructureParser} class to read protein
  * structures from a FASTA file.