The first thing you have to do is get the syntax right:
#+begin_src bash :results output replace
man ls
#+end_src
Note that there is no : after :results. For all the details and options, see Using Header Arguments in the Org mode manual.
That fixes the first code block.
The second has the same syntax problem. Fix that first and see what you get: I suspect that that will be enough to fix the second problem as well.
If you still have a problem however, open a new question. It is a different problem from the :results: syntax error. Here are some suggestions for what to include in your new question (if you need to ask it):
Note that the output buffer is called *Org-Babel Error Output* which suggests that your shell commands resulted in some error. It is not clear what that error is: we don't have your conda environment setup file and we don't have the fastp command to test with. You are going to have to debug it, or post more information about it. In particular, the complete buffer should be included in your question.
And note that screenshots are to be avoided, unless absolutely necessary. All of this is just text and you can include it verbatim in your question by enclosing it in triple backticks (see my edit to your question where I did that to your code blocks, instead of using the four-space indentation that you used, to see that in action). Better for us and easier and faster for you.
EDIT: as @mankoff mentions in his comment, the second problem is a combination of the above syntax error, a wrong invocation of fastp[1], and an unfortunate bug in fastp that sends the usage message to stderr instead of stdout. The bug has been reported (see this issue) but unfortunately it has languished unfixed for six (!) years. I added a comment in support of the fix, but I'm not sure if it will be heeded.
Footnote:
[1] fastp -h is short for fastp --html which requires a value, so the invocation causes an error: option needs value: --html. Use fastp --help to get the usage message, but read on for an additional problem.
fastp --helpsends the output tostderr, whereas it should send it tostdout(in which case the only problem would be the extraneous:). That is a bug infastpand an issue has been around for six(!) years without resolution. I've added a comment supporting the fix as well, but if you are usingfastp, please complain to the author: he needs to fix it.fastp -h: that is taken as--htmland complains about a missing value. Usefastp --help.fastp --help >&2?