You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/Users/lgallucc/figaro/figaro/figaro.py", line 4, in <module>
from . import environmentParameterParser, fileNamingStandards, fastqAnalysis, trimParameterPrediction
ImportError: attempted relative import with no known parent package
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/lgallucc/figaro/figaro/trimParameterPrediction.py", line 4, in <module>
from . import fileNamingStandards
ImportError: attempted relative import with no known parent package
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/lgallucc/figaro/figaro/figaro.py", line 6, in <module>
import environmentParameterParser, fileNamingStandards, fastqAnalysis, trimParameterPrediction
File "/Users/lgallucc/figaro/figaro/trimParameterPrediction.py", line 9, in <module>
import fileNamingStandards, fastqHandler, fastqAnalysis, expectedErrorCurve
File "/Users/lgallucc/figaro/figaro/expectedErrorCurve.py", line 13, in <module>
class ExponentialFit(object):
File "/Users/lgallucc/figaro/figaro/expectedErrorCurve.py", line 17, in ExponentialFit
def __init__(self, a:float, b:float, c:float, covariance:collections.Iterable = None, rSquared:float = None, curvePNG:str=None):
AttributeError: module 'collections' has no attribute 'Iterable'
The text was updated successfully, but these errors were encountered:
luigallucci
changed the title
Error during Figaro running
ImportError during Figaro running
Jan 26, 2024
This is because since Python 3.3 the collections module has been succeeded by the collections.abc module. You can fix this by simply find&replace all instances of "collections" with "collections.abc" in all Figaro Python scripts that contain this module.
Figaro is not maintained anymore though. There has been some rumours about an update called Figaro2 for a long time, but not from Zymo.
Hi all,
I'm trying to run figaro on a subset of samples. I'm facing this problems after running it with the following command set:
python3 figaro.py -i /Users/lgallucc/Desktop/Tempor/Luigi/ -o /Users/lgallucc/Desktop/TemporLuigi/Figaro -a 320 -f 20 -r 20
The text was updated successfully, but these errors were encountered: