new_note.setDuration(phrase_ratio * note.getDuration());
new_note.setRhythmValue(phrase_ratio * note.getRhythmValue());
Instrument currInst = (Instrument)inst.peek();
currInst.setBlock(false);
currInst.setFinished(true);
currInst.renderNote(new_note,((double)time+ntime));
currInst.setFinished(false);
currInst.iterateChain();
ntime += phrase_ratio * note.getRhythmValue();
}