Guest User

Untitled

a guest
Mar 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. for f in /completepath/*
  2. do
  3. [ -d $f ] && cd "$f" && echo Entering into $f
  4. for y in `ls *.fastq.gz | sed 's/_L00[1234]_R1_001.fastq.gz//g' | sort -u`
  5. do
  6. echo ${y}
  7. done
  8. done
  9.  
  10. Entering into /completepath/m_i_cast_avpv_1
  11. iavpvcast1_S6
  12. Entering into /completepath/m_i_cast_avpv_2
  13. iavpvcast2_S6
  14. Entering into /completepath/m_i_int_avpv_1
  15. iavpvint1_S5
  16. Entering into /completepath/m_i_int_avpv_2
  17. iavpvint2_S5
  18. Entering into /completepath/m_p_cast_avpv_1
  19. pavpvcast1_S8
  20. Entering into /completepathd/m_p_int_avpv_1
  21. pavpvint1_S7
  22. Entering into /completepath/m_p_int_avpv_2
  23. pavpvint2_S7
  24. pavpvint2_S7
  25. pavpvint2_S7
  26. pavpvint2_S7
Add Comment
Please, Sign In to add comment