Skip to content

Commit 39f61f6

Browse files
author
William Lai
committed
rename tool to match publication nomenclature
1 parent 371a9ad commit 39f61f6

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

scriptmanager/src/main/ScriptManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import window_interface.BAM_Format_Converter.BAMtoBEDWindow;
1717
import window_interface.BAM_Format_Converter.BAMtoGFFWindow;
1818
import window_interface.BAM_Format_Converter.BAMtoscIDXWindow;
19-
import window_interface.BAM_Format_Converter.FilterforPermanganateSeqWindow;
19+
import window_interface.BAM_Format_Converter.FilterforPIPseqWindow;
2020
import window_interface.BAM_Manipulation.BAIIndexerWindow;
2121
import window_interface.BAM_Manipulation.BAMRemoveDupWindow;
2222
import window_interface.BAM_Manipulation.MergeBAMWindow;
@@ -198,7 +198,7 @@ public void actionPerformed(ActionEvent e) {
198198
EventQueue.invokeLater(new Runnable() {
199199
public void run() {
200200
try {
201-
FilterforPermanganateSeqWindow frame = new FilterforPermanganateSeqWindow();
201+
FilterforPIPseqWindow frame = new FilterforPIPseqWindow();
202202
frame.setVisible(true);
203203
} catch (Exception e) {
204204
e.printStackTrace();

scriptmanager/src/scripts/BAM_Format_Converter/FilterforPenanganateSeq.java renamed to scriptmanager/src/scripts/BAM_Format_Converter/FilterforPIPseq.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import util.FASTAUtilities;
2525

2626
@SuppressWarnings("serial")
27-
public class FilterforPenanganateSeq extends JFrame {
27+
public class FilterforPIPseq extends JFrame {
2828
File bamFile = null;
2929
File genome = null;
3030
File output = null;
@@ -34,7 +34,7 @@ public class FilterforPenanganateSeq extends JFrame {
3434

3535
private JTextArea textArea;
3636

37-
public FilterforPenanganateSeq(File in, File gen, File out, String s) {
37+
public FilterforPIPseq(File in, File gen, File out, String s) {
3838
setTitle("Permanganate-Seq Filtering Progress");
3939
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
4040
setBounds(150, 150, 600, 800);

scriptmanager/src/window_interface/BAM_Format_Converter/FilterforPermanganateSeqWindow.java renamed to scriptmanager/src/window_interface/BAM_Format_Converter/FilterforPIPseqWindow.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import javax.swing.border.EmptyBorder;
2929
import javax.swing.JLabel;
3030

31-
import scripts.BAM_Format_Converter.FilterforPenanganateSeq;
31+
import scripts.BAM_Format_Converter.FilterforPIPseq;
3232
import scripts.BAM_Manipulation.BAIIndexer;
3333
import util.FileSelection;
3434
import util.FASTAUtilities;
@@ -38,7 +38,7 @@
3838
import javax.swing.SwingConstants;
3939

4040
@SuppressWarnings("serial")
41-
public class FilterforPermanganateSeqWindow extends JFrame implements ActionListener, PropertyChangeListener {
41+
public class FilterforPIPseqWindow extends JFrame implements ActionListener, PropertyChangeListener {
4242
private JPanel contentPane;
4343
protected JFileChooser fc = new JFileChooser(new File(System.getProperty("user.dir")));
4444

@@ -74,7 +74,7 @@ public Void doInBackground() throws Exception {
7474
File OUTPUT = null;
7575
if(OUTPUT_PATH != null) { OUTPUT = new File(OUTPUT_PATH.getCanonicalPath() + File.separator + NAME[0] + "_PSfilter.bam"); }
7676
else { OUTPUT = new File(NAME[0] + "_PSfilter.bam"); }
77-
FilterforPenanganateSeq filter = new FilterforPenanganateSeq(BAMFiles.get(x), GENOME, OUTPUT, txtSeq.getText());
77+
FilterforPIPseq filter = new FilterforPIPseq(BAMFiles.get(x), GENOME, OUTPUT, txtSeq.getText());
7878
filter.setVisible(true);
7979
filter.run();
8080

@@ -95,7 +95,7 @@ public void done() {
9595
}
9696
}
9797

98-
public FilterforPermanganateSeqWindow() {
98+
public FilterforPIPseqWindow() {
9999
setTitle("Filter Permanganate-Seq Reads");
100100
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
101101

0 commit comments

Comments
 (0)